From ead7e62d393ff7a8404ec24d476de4df59e04dec Mon Sep 17 00:00:00 2001 From: xTunio <22046158+xTunio@users.noreply.github.com> Date: Fri, 18 Feb 2022 21:20:48 +0100 Subject: [PATCH] fix app verion in tray --- src/tray.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tray.ts b/src/tray.ts index f6de5af..1d43ef6 100644 --- a/src/tray.ts +++ b/src/tray.ts @@ -26,6 +26,6 @@ app.whenReady().then(() => { }, ]); - tray.setToolTip('ArmCord ' + process.env.npm_package_version) + tray.setToolTip('ArmCord ' + app.getVersion()) tray.setContextMenu(contextMenu) -}) \ No newline at end of file +})