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

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlivier Goffart <ogoffart@woboq.com>2019-10-21 14:11:37 +0300
committerCamila (Rebase PR Action) <hello@camila.codes>2020-11-24 21:22:33 +0300
commit1bf895cadcf7b3d1a683f8df34144533c3d1ee25 (patch)
tree8adef8a7ddce2622fdf7d2564f76b940564c80be /src/gui/updater
parentc58f00abc7ac69b9d913aadd85b310d518590000 (diff)
Updater: Fix Version numer not shown in the user visible string
There was one argument too many in the string. Bug was introduced in commit 21ac396b Issue: #7288
Diffstat (limited to 'src/gui/updater')
-rw-r--r--src/gui/updater/ocupdater.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/updater/ocupdater.cpp b/src/gui/updater/ocupdater.cpp
index 5b25ce5b8..3c379e9c3 100644
--- a/src/gui/updater/ocupdater.cpp
+++ b/src/gui/updater/ocupdater.cpp
@@ -147,7 +147,7 @@ QString OCUpdater::statusString() const
case Downloading:
return tr("Downloading %1. Please wait …").arg(updateVersion);
case DownloadComplete:
- return tr("%1 available. Restart application to start the update.").arg(Theme::instance()->appNameGUI(), updateVersion);
+ return tr("%1 available. Restart application to start the update.").arg(updateVersion);
case DownloadFailed:
return tr("Could not download update. Please click <a href='%1'>here</a> to download the update manually.").arg(_updateInfo.web());
case DownloadTimedOut: