aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorsomeordinaryidiot# <0x0000202E@proton.me>2023-07-24 20:56:45 +0200
committersomeordinaryidiot# <0x0000202E@proton.me>2023-07-24 20:56:45 +0200
commit87858260996ddb086b4e42ade9e25f79418bb3a2 (patch)
treec2b851f712948eac39c0207bb05d244b99dd6165 /src
parentaeb87ac3c9dbff5d13dd2ebf2601d06b0e6be12f (diff)
downloadViper-87858260996ddb086b4e42ade9e25f79418bb3a2.tar.gz
Viper-87858260996ddb086b4e42ade9e25f79418bb3a2.zip
Fixed formatting issue in the up-to-date console message.
Diffstat (limited to 'src')
-rw-r--r--src/modules/update.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/update.js b/src/modules/update.js
index 02d38c6..f16c928 100644
--- a/src/modules/update.js
+++ b/src/modules/update.js
@@ -172,7 +172,7 @@ update.northstar = async () => {
// Makes sure it is not already the latest version
if (! await northstar_update_available()) {
ipcMain.emit("ns-update-event", "cli.update.uptodate.short");
- console.ok(lang("cli.update.uptodate"), ns_version);
+ console.ok(lang("cli.update.uptodate").replace("%s", ns_version));
win.log(lang("gui.update.uptodate"));
cli.exit();