Skip to content

Commit

Permalink
Merge pull request #7671 from nextcloud/backport/7667/stable-3.15
Browse files Browse the repository at this point in the history
[stable-3.15] improvement of error message
  • Loading branch information
mgallien authored Dec 16, 2024
2 parents 077bc4d + e5f0f69 commit 3180934
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/gui/folderman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2044,9 +2044,10 @@ bool FolderMan::checkVfsAvailability(const QString &path, Vfs::Mode mode) const
Result<void, QString> FolderMan::unsupportedConfiguration(const QString &path) const
{
if (numberOfSyncJournals(path) > 1) {
return tr("Multiple accounts are sharing the folder %1.\n"
"This configuration is known to lead to data loss and is no longer supported.\n"
"Please consider removing this folder from the account and adding it again.")
return tr("The folder %1 is linked to multiple accounts.\n"
"This setup can cause data loss and it is no longer supported.\n"
"To resolve this issue: please remove %1 from one of the accounts and create a new sync folder.\n\n"
"For advanced users: this issue might be related to multiple sync database files found in one folder. Please check %1 for outdated and unused .sync_*.db files and remove them.")
.arg(path);
}
return {};
Expand Down

0 comments on commit 3180934

Please sign in to comment.