Skip to content

Commit

Permalink
improvement of error message
Browse files Browse the repository at this point in the history
Signed-off-by: Rello <Rello@users.noreply.github.com>
  • Loading branch information
Rello authored Dec 16, 2024
1 parent 389983d commit bb49203
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/gui/folderman.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2044,9 +2044,9 @@ 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 is no longer supported. To resolve this issue, please remove this folder from one of the accounts and add it again.\n\n"
"For advanced users: This issue might be related to an older database file. Check the folder for outdated .db files and remove them if necessary.")
.arg(path);
}
return {};
Expand Down

0 comments on commit bb49203

Please sign in to comment.