[mob][photo] Fix incorrectly formatted query (missing whitespace)

This commit is contained in:
ashilkn
2024-07-31 18:20:53 +05:30
parent 627a34a231
commit 95e342830b

View File

@@ -703,7 +703,6 @@ class FilesDB {
final db = await instance.sqliteAsyncDB;
final results = await db.getAll(query, args);
_logger.info("message");
stopWatch.log('queryDone');
final files = convertToFiles(results);
stopWatch.log('convertDone');
@@ -1178,7 +1177,7 @@ class FilesDB {
omitCollectionId: true,
);
await db.execute(
'UPDATE $filesTable'
'UPDATE $filesTable '
'SET $updateAssignments WHERE $columnUploadedFileID = ?',
parameterSet,
);