Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannah von Reth <hannah.vonreth@owncloud.com>2021-09-17 12:34:15 +0300
committerHannah von Reth <vonreth@kde.org>2021-09-17 14:14:59 +0300
commite0d1caf7780b4ad07fe40ed31be2ca99cc8a6856 (patch)
treef56b88c64757279520b9cbdfff0038031baa69fb /src/gui/folderman.cpp
parent629c82abbef03f92a487a8cc6a875b6486e51328 (diff)
Also migrate pre 2.6 db files
Diffstat (limited to 'src/gui/folderman.cpp')
-rw-r--r--src/gui/folderman.cpp22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/gui/folderman.cpp b/src/gui/folderman.cpp
index dc4941bc0..78b186f8f 100644
--- a/src/gui/folderman.cpp
+++ b/src/gui/folderman.cpp
@@ -289,12 +289,22 @@ void FolderMan::setupFoldersHelper(QSettings &settings, AccountStatePtr account,
const auto defaultJournalPath = [&account, folderDefinition] {
// if we would have booth the 2.9.0 file name and the lagacy file
// with the md5 infix we prefer the 2.9.0 version
- const auto path = SyncJournalDb::makeDbName(folderDefinition.localPath);
- if (QFileInfo::exists(QDir(folderDefinition.localPath).filePath(path))) {
- return path;
+ const QFileInfo info(folderDefinition.localPath);
+ const QString defaultPath = SyncJournalDb::makeDbName(folderDefinition.localPath);
+ if (info.exists(defaultPath)) {
+ return defaultPath;
}
- // legacy name
- return SyncJournalDb::makeDbName(folderDefinition.localPath, account->account()->url(), folderDefinition.targetPath, account->account()->credentials()->user());
+ // 2.6
+ QString legacyPath = SyncJournalDb::makeDbName(folderDefinition.localPath, account->account()->url(), folderDefinition.targetPath, account->account()->credentials()->user());
+ if (info.exists(legacyPath)) {
+ return legacyPath;
+ }
+ // pre 2.6
+ legacyPath.replace(QLatin1String(".sync_"), QLatin1String("._sync_"));
+ if (info.exists(legacyPath)) {
+ return legacyPath;
+ }
+ return defaultPath;
}();
// Migration: Old settings don't have journalPath
@@ -312,7 +322,7 @@ void FolderMan::setupFoldersHelper(QSettings &settings, AccountStatePtr account,
folderDefinition.journalPath = defaultJournalPath;
}
- // Migration: If an old db is found, move it to the new name.
+ // Migration: If an old .csync_journal.db is found, move it to the new name.
if (backwardsCompatible) {
SyncJournalDb::maybeMigrateDb(folderDefinition.localPath, folderDefinition.absoluteJournalPath());
}