From 8a852396d1c1e0fe91418f6db5398cb0c5384411 Mon Sep 17 00:00:00 2001 From: allexzander Date: Mon, 23 Oct 2023 20:11:14 +0200 Subject: [PATCH] Update src/libsync/syncfileitem.cpp Co-authored-by: Matthieu Gallien Signed-off-by: allexzander --- src/libsync/syncfileitem.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsync/syncfileitem.cpp b/src/libsync/syncfileitem.cpp index 72e5012878fdd..29be0b35f26ff 100644 --- a/src/libsync/syncfileitem.cpp +++ b/src/libsync/syncfileitem.cpp @@ -83,7 +83,7 @@ SyncJournalFileRecord SyncFileItem::toSyncJournalFileRecordWithInode(const QStri rec._type = _type; if (rec._type == ItemTypeVirtualFileDownload) { rec._type = ItemTypeFile; - qCInfo(lcFileItem) << "Changing item type from virtual to normal file" << rec._path; + qCInfo(lcFileItem) << "Changing item type from ItemTypeVirtualFileDownload to normal file to avoid wrong record type in database" << rec._path; } if (rec._type == ItemTypeVirtualFileDehydration) rec._type = ItemTypeVirtualFile;