From df622a22593ca407d482702ff9db6a1beea0bfec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Wed, 21 Aug 2019 13:48:07 -0400 Subject: [PATCH] Continuing development. --- bazarr/notifier.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bazarr/notifier.py b/bazarr/notifier.py index 8deee37a0..9a0eea98f 100644 --- a/bazarr/notifier.py +++ b/bazarr/notifier.py @@ -106,7 +106,7 @@ def send_notifications(sonarrSeriesId, sonarrEpisodeId, message): apobj.notify( title='Bazarr notification', - body=(series + ' - S' + str(episode.season).zfill(2) + 'E' + str(episode.episode).zfill(2) + ' - ' + episode.title + ' : ' + message), + body=(series + ' - S' + str(episode[1]).zfill(2) + 'E' + str(episode[2]).zfill(2) + ' - ' + episode[0] + ' : ' + message), )