Save only if newswire exists

main
Bob Mottram 2020-11-03 21:53:29 +00:00
parent 2529bce3af
commit 6631c04551
1 changed files with 3 additions and 2 deletions

View File

@ -725,8 +725,9 @@ def runNewswireDaemon(baseDir: str, httpd,
mergeWithPreviousNewswire(httpd.newswire, newNewswire) mergeWithPreviousNewswire(httpd.newswire, newNewswire)
httpd.newswire = newNewswire httpd.newswire = newNewswire
saveJson(httpd.newswire, newswireStateFilename) if newNewswire:
print('Newswire updated') saveJson(httpd.newswire, newswireStateFilename)
print('Newswire updated')
convertRSStoActivityPub(baseDir, convertRSStoActivityPub(baseDir,
httpPrefix, domain, port, httpPrefix, domain, port,