Minor fix in text of warning and debug message.
authorCamila <hello@camila.codes>
Tue, 18 Aug 2020 11:30:15 +0000 (13:30 +0200)
committerKevin Ottens <ervin@ipsquad.net>
Tue, 18 Aug 2020 12:00:21 +0000 (14:00 +0200)
Signed-off-by: Camila <hello@camila.codes>
src/common/syncjournaldb.cpp

index d44f1f98b12f8b9cb59179c575da38e299960616..01db818eda2a65d354b542b64f6419f49c811988 100644 (file)
@@ -729,10 +729,10 @@ bool SyncJournalDb::updateMetadataTableStructure()
         SqlQuery query(_db);
         query.prepare("ALTER TABLE metadata ADD COLUMN isE2eEncrypted INTEGER;");
         if (!query.exec()) {
-            sqlFail("updateMetadataTableStructure: add e2eMangledName column", query);
+            sqlFail("updateMetadataTableStructure: add isE2eEncrypted column", query);
             re = false;
         }
-        commitInternal("update database structure: add e2eMangledName col");
+        commitInternal("update database structure: add isE2eEncrypted col");
     }
 
     if (!tableColumns("uploadinfo").contains("contentChecksum")) {