Continuing development.

pull/543/head
Louis Vézina 5 years ago
parent e9864febc1
commit 21ebd0c1e5

@ -101,13 +101,12 @@ def send_notifications(sonarrSeriesId, sonarrEpisodeId, message):
apobj = apprise.Apprise()
for provider in providers:
if provider[1] is not None:
apobj.add(provider[1])
if provider.url is not None:
apobj.add(provider.url)
apobj.notify(
title='Bazarr notification',
body=(series + ' - S' + str(episode[1]).zfill(2) + 'E' + str(episode[2]).zfill(2) + ' - ' + episode[
0] + ' : ' + message),
body=(series + ' - S' + str(episode.season).zfill(2) + 'E' + str(episode.episode).zfill(2) + ' - ' + episode.title + ' : ' + message),
)
@ -118,8 +117,8 @@ def send_notifications_movie(radarrId, message):
apobj = apprise.Apprise()
for provider in providers:
if provider[1] is not None:
apobj.add(provider[1])
if provider.url is not None:
apobj.add(provider.url)
apobj.notify(
title='Bazarr notification',

Loading…
Cancel
Save