From b74249e691046c986e9fc1ff9b69a3ee1242a97c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Louis=20V=C3=A9zina?= <5130500+morpheus65535@users.noreply.github.com> Date: Tue, 5 Mar 2019 09:32:10 -0500 Subject: [PATCH] Fix for #337 --- bazarr/get_subtitle.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bazarr/get_subtitle.py b/bazarr/get_subtitle.py index fb4a53c02..89187447f 100644 --- a/bazarr/get_subtitle.py +++ b/bazarr/get_subtitle.py @@ -596,7 +596,7 @@ def wanted_search_missing_subtitles(): for episode in episodes: wanted_download_subtitles(episode[0]) else: - q4ws.append('BAZARR All providers are throttled') + notifications.write(msg='BAZARR All providers are throttled', queue='get_subtitle') logging.info("BAZARR All providers are throttled") if settings.general.getboolean('use_radarr'): @@ -604,7 +604,7 @@ def wanted_search_missing_subtitles(): for movie in movies: wanted_download_subtitles_movie(movie[0]) else: - q4ws.append('BAZARR All providers are throttled') + notifications.write(msg='BAZARR All providers are throttled', queue='get_subtitle') logging.info("BAZARR All providers are throttled") logging.info('BAZARR Finished searching for missing subtitles. Check histories for more information.')