Fix getSubDeviceSessions SQL query
This commit is contained in:
parent
34f90f2eb7
commit
ce4b86e6d4
|
@ -594,7 +594,7 @@ public class DatabaseBackend extends SQLiteOpenHelper {
|
||||||
Cursor cursor = db.query(AxolotlService.SQLiteAxolotlStore.SESSION_TABLENAME,
|
Cursor cursor = db.query(AxolotlService.SQLiteAxolotlStore.SESSION_TABLENAME,
|
||||||
columns,
|
columns,
|
||||||
AxolotlService.SQLiteAxolotlStore.ACCOUNT + " = ? AND "
|
AxolotlService.SQLiteAxolotlStore.ACCOUNT + " = ? AND "
|
||||||
+ AxolotlService.SQLiteAxolotlStore.NAME + " = ? AND ",
|
+ AxolotlService.SQLiteAxolotlStore.NAME + " = ?",
|
||||||
selectionArgs,
|
selectionArgs,
|
||||||
null, null, null);
|
null, null, null);
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue