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:
authorOlivier Goffart <ogoffart@woboq.com>2019-10-21 14:11:37 +0300
committerOlivier Goffart <olivier@woboq.com>2019-10-25 14:41:48 +0300
commitd38f529469d3cccfe216bc9b29c0b0d3a0daa74f (patch)
tree3e7d88fe1c6f1c6d9a385df1d4cbd77c48b7e4cd /src/gui/updater
parent161dd4165c076e263d1c7e27e4fd66a0515a197c (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 956bd9003..a625bce91 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: