From 145fa071b576c9602291466f34b0a58c798896ac Mon Sep 17 00:00:00 2001 From: Martin Wagner Date: Mon, 9 Aug 2021 17:18:57 +0200 Subject: [PATCH] added missing space in notify --- bin/mpdevil | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/mpdevil b/bin/mpdevil index a3a61bf..1bf251f 100755 --- a/bin/mpdevil +++ b/bin/mpdevil @@ -4008,7 +4008,7 @@ class MainWindow(Gtk.ApplicationWindow): self.set_title(" • ".join(filter(None, (str(song["title"]), str(song["artist"]), album_with_date)))) if self._settings.get_boolean("send-notify"): if not self.is_active() and self._client.status()["state"] == "play": - self._notify.update(str(song["title"]), f"{song['artist']}\n{song['album']}{date}") + self._notify.update(str(song["title"]), f"{song['artist']}\n{album_with_date}") pixbuf=self._client.get_cover(song).get_pixbuf(400) self._notify.set_image_from_pixbuf(pixbuf) self._notify.show()