1 files changed, 6 insertions, 6 deletions
diff --git a/src/Cache.cpp b/src/Cache.cpp
index 3a21f83e..b197353e 100644
--- a/src/Cache.cpp
+++ b/src/Cache.cpp
@@ -224,13 +224,13 @@ Cache::setup()
// Previous location of the cache directory
auto oldCache =
QStringLiteral("%1/%2%3").arg(QStandardPaths::writableLocation(QStandardPaths::CacheLocation),
- QString::fromUtf8(localUserId_.toUtf8().toHex()),
- QString::fromUtf8(settings->profile().toUtf8().toHex()));
+ QString::fromUtf8(localUserId_.toUtf8().toHex()),
+ QString::fromUtf8(settings->profile().toUtf8().toHex()));
- cacheDirectory_ =
- QStringLiteral("%1/%2%3").arg(QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
- QString::fromUtf8(localUserId_.toUtf8().toHex()),
- QString::fromUtf8(settings->profile().toUtf8().toHex()));
+ cacheDirectory_ = QStringLiteral("%1/%2%3").arg(
+ QStandardPaths::writableLocation(QStandardPaths::AppDataLocation),
+ QString::fromUtf8(localUserId_.toUtf8().toHex()),
+ QString::fromUtf8(settings->profile().toUtf8().toHex()));
bool isInitial = !QFile::exists(cacheDirectory_);
|