diff options
author | 0neGal <mail@0negal.com> | 2023-07-24 23:47:56 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-24 23:47:56 +0200 |
commit | eede04936a6c6562bdbb6f5fc00e7c7b513aba5e (patch) | |
tree | c2b851f712948eac39c0207bb05d244b99dd6165 | |
parent | aeb87ac3c9dbff5d13dd2ebf2601d06b0e6be12f (diff) | |
parent | 87858260996ddb086b4e42ade9e25f79418bb3a2 (diff) | |
download | Viper-eede04936a6c6562bdbb6f5fc00e7c7b513aba5e.tar.gz Viper-eede04936a6c6562bdbb6f5fc00e7c7b513aba5e.zip |
Merge pull request #201 from ProjektOpensource/main
Fixed formatting issue in the up-to-date console message.
-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(); |