From: Camila Date: Tue, 18 Aug 2020 11:30:15 +0000 (+0200) Subject: Minor fix in text of warning and debug message. X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~221 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=71fbc65eb05e93a313a2f78c75c7a67ac16cbf51;p=nextcloud-desktop.git Minor fix in text of warning and debug message. Signed-off-by: Camila --- diff --git a/src/common/syncjournaldb.cpp b/src/common/syncjournaldb.cpp index d44f1f98b..01db818ed 100644 --- a/src/common/syncjournaldb.cpp +++ b/src/common/syncjournaldb.cpp @@ -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")) {