mirror of
https://code.briarproject.org/briar/briar.git
synced 2026-02-19 22:29:53 +01:00
Fixed a SQL typo. Unit tests would've caught this.
This commit is contained in:
@@ -1388,7 +1388,7 @@ abstract class JdbcDatabase implements Database<Connection> {
|
|||||||
try {
|
try {
|
||||||
// Get the local and remote authors
|
// Get the local and remote authors
|
||||||
String sql = "SELECT l.authorId, l.name, l.publicKey,"
|
String sql = "SELECT l.authorId, l.name, l.publicKey,"
|
||||||
+ " r.authorId, r.name, r.publicKay"
|
+ " r.authorId, r.name, r.publicKey"
|
||||||
+ " FROM localAuthors AS l"
|
+ " FROM localAuthors AS l"
|
||||||
+ " JOIN contacts AS r"
|
+ " JOIN contacts AS r"
|
||||||
+ " ON l.authorId = r.localAuthorId"
|
+ " ON l.authorId = r.localAuthorId"
|
||||||
|
|||||||
Reference in New Issue
Block a user