From f190c199b2e458a4fbcfb2cd9fed72f24b7b1192 Mon Sep 17 00:00:00 2001 From: Core <64542347+coredev-uk@users.noreply.github.com> Date: Sat, 12 Mar 2022 12:00:54 +0000 Subject: [PATCH] Small tweak (did try setting up actions but they require a service worker so fuck that and electron's notifications dont support url because they have to be annoying) --- src/renderer/main/vueapp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/renderer/main/vueapp.js b/src/renderer/main/vueapp.js index 8b7787ee..6a81c77d 100644 --- a/src/renderer/main/vueapp.js +++ b/src/renderer/main/vueapp.js @@ -843,7 +843,7 @@ const app = new Vue({ this.notification.close() } this.notification = new Notification(a.name, { - body: a.artistName, + body: `${a.artistName} — ${a.albumName}`, icon: a.artwork.url.replace('/{w}x{h}bb', '/512x512bb').replace('/2000x2000bb', '/35x35bb'), silent: true, });