FIX:(#1893) In maintenance mode, when performing an import into a fresh install, the pull refresh date would not be populated due to the weekly pull not initializing on startup

This commit is contained in:
evilhero 2018-03-17 22:25:24 -04:00
parent 7a1af7c174
commit 312e699ef1
1 changed files with 2 additions and 2 deletions

View File

@ -395,7 +395,7 @@ def upcoming_update(ComicID, ComicName, IssueNumber, IssueDate, forcecheck=None,
else:
#if it's at this point and the refresh is None, odds are very good that it's already up-to-date so let it flow thru
if mylar.CONFIG.PULL_REFRESH is None:
mylar.CONFIG.PULL_REFRESH = datetime.datetime.today()
mylar.CONFIG.PULL_REFRESH = datetime.datetime.today().replace(second=0,microsecond=0)
#update the PULL_REFRESH
#mylar.config_write()
logger.fdebug('pull_refresh: ' + str(mylar.CONFIG.PULL_REFRESH))
@ -454,7 +454,7 @@ def upcoming_update(ComicID, ComicName, IssueNumber, IssueDate, forcecheck=None,
logger.fdebug('hours: ' + str(hours) + ' -- forcecheck: ' + str(forcecheck))
if hours > 2 or forcecheck == 'yes':
logger.fdebug('weekinfo:' + str(weekinfo))
mylar.CONFIG.PULL_REFRESH = datetime.datetime.today()
mylar.CONFIG.PULL_REFRESH = datetime.datetime.today().replace(second=0,microsecond=0)
#update the PULL_REFRESH
#mylar.config_write()
chkitout = mylar.locg.locg(weeknumber=str(weekinfo['weeknumber']),year=str(weekinfo['year']))