diff options
author | someordinaryidiot# <0x0000202E@proton.me> | 2023-07-24 20:56:45 +0200 |
---|---|---|
committer | someordinaryidiot# <0x0000202E@proton.me> | 2023-07-24 20:56:45 +0200 |
commit | 87858260996ddb086b4e42ade9e25f79418bb3a2 (patch) | |
tree | c2b851f712948eac39c0207bb05d244b99dd6165 /src | |
parent | aeb87ac3c9dbff5d13dd2ebf2601d06b0e6be12f (diff) | |
download | Viper-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.js | 2 |
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(); |