FIX: fix for not monitoring any storyarcs present on the upcoming tab

This commit is contained in:
evilhero 2018-02-16 17:46:58 -05:00
parent da9f7c6521
commit 0873be54fd
1 changed files with 1 additions and 1 deletions

View File

@ -1978,7 +1978,7 @@ class WebInterface(object):
if mylar.CONFIG.UPCOMING_STORYARCS is True:
arcs = myDB.select("SELECT * from storyarcs WHERE Status='Wanted'")
else:
arcs = 0
arcs = []
if mylar.CONFIG.UPCOMING_SNATCHED is True:
issues += myDB.select("SELECT * from issues WHERE Status='Snatched'")
if mylar.CONFIG.UPCOMING_STORYARCS is True: