|
@@ -645,7 +645,7 @@ class FilesDB {
|
|
|
inParam = inParam.substring(0, inParam.length - 1);
|
|
|
final db = await instance.database;
|
|
|
final order = (asc ?? false ? 'ASC' : 'DESC');
|
|
|
- String whereClause =
|
|
|
+ final String whereClause =
|
|
|
'$columnCollectionID IN ($inParam) AND $columnCreationTime >= ? AND '
|
|
|
'$columnCreationTime <= ? AND $columnOwnerID = ?';
|
|
|
final List<Object> whereArgs = [startTime, endTime, userID];
|