1
0
Fork 0
mirror of https://github.com/evilhero/mylar synced 2025-02-22 22:10:30 +00:00

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

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: