mirror of
https://github.com/SickGear/SickGear.git
synced 2025-01-07 02:23:38 +00:00
Fix for rls words
This commit is contained in:
parent
3fd5f75180
commit
cf99eb9625
1 changed files with 2 additions and 2 deletions
|
@ -3830,10 +3830,10 @@ class Home(MainHandler):
|
||||||
if showObj.archive_firstmatch != archive_firstmatch:
|
if showObj.archive_firstmatch != archive_firstmatch:
|
||||||
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()
|
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()
|
showObj.rls_require_words = rls_require_words.strip()
|
||||||
|
|
||||||
# if we change location clear the db of episodes, change it, write to db, and rescan
|
# if we change location clear the db of episodes, change it, write to db, and rescan
|
||||||
|
|
Loading…
Reference in a new issue