From 48436694ebbfb087bb92bb021389c85e2da00ad9 Mon Sep 17 00:00:00 2001 From: ashilkn Date: Fri, 17 May 2024 16:28:13 +0530 Subject: [PATCH] [mob][photos] Fix incorrent sqlite operation --- mobile/lib/db/entities_db.dart | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mobile/lib/db/entities_db.dart b/mobile/lib/db/entities_db.dart index d3759389d..228e5e2b0 100644 --- a/mobile/lib/db/entities_db.dart +++ b/mobile/lib/db/entities_db.dart @@ -28,6 +28,7 @@ extension EntitiesDB on FilesDB { ''' INSERT OR ${conflictAlgorithm.name.toUpperCase()} INTO entities (id, type, ownerID, data, updatedAt) + VALUES (?, ?, ?, ?, ?) ''', parameterSets, ); @@ -39,6 +40,7 @@ extension EntitiesDB on FilesDB { ''' INSERT OR ${conflictAlgorithm.name.toUpperCase()} INTO entities (id, type, ownerID, data, updatedAt) + VALUES (?, ?, ?, ?, ?) ''', parameterSets, );