From cf99eb962559cd52cb06f00449c402f3c29eae08 Mon Sep 17 00:00:00 2001 From: echel0n Date: Sat, 19 Jul 2014 06:27:53 -0700 Subject: [PATCH] Fix for rls words --- sickbeard/webserve.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sickbeard/webserve.py b/sickbeard/webserve.py index dce815a3..c9238286 100644 --- a/sickbeard/webserve.py +++ b/sickbeard/webserve.py @@ -3830,10 +3830,10 @@ class Home(MainHandler): if showObj.archive_firstmatch != archive_firstmatch: showObj.archive_firstmatch = archive_firstmatch - if rls_ignore_words and showObj.rls_ignore_words != rls_ignore_words.strip(): + if rls_ignore_words is not None and showObj.rls_ignore_words != rls_ignore_words.strip(): showObj.rls_ignore_words = rls_ignore_words.strip() - if rls_require_words and showObj.rls_require_words != rls_require_words.strip(): + if rls_require_words is not None and showObj.rls_require_words != rls_require_words.strip(): showObj.rls_require_words = rls_require_words.strip() # if we change location clear the db of episodes, change it, write to db, and rescan