From 5c4378756053a474e20c06ca237a69cd64a35738 Mon Sep 17 00:00:00 2001 From: echel0n Date: Thu, 22 May 2014 23:58:29 -0700 Subject: [PATCH] Fixed missing ui notification for snatched episodes. --- sickbeard/search.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sickbeard/search.py b/sickbeard/search.py index af7d8b05..e1eaf915 100644 --- a/sickbeard/search.py +++ b/sickbeard/search.py @@ -155,8 +155,8 @@ def snatchEpisode(result, endStatus=SNATCHED): if sickbeard.USE_FAILED_DOWNLOADS: failed_history.logSnatch(result) - else: - ui.notifications.message('Episode snatched', result.name) + + ui.notifications.message('Episode snatched', result.name) history.logSnatch(result)