bug fix, change caching

This commit is contained in:
2021-03-27 15:02:28 -04:00
parent 0133c42d62
commit 4e0f837cec
2 changed files with 3 additions and 16 deletions

View File

@@ -35,7 +35,7 @@ class JsonChanHelper(ChanHelper):
@staticmethod
def thread_mtime(thread):
return thread["last_modified"]
return thread["last_modified"] if "last_modified" in thread else -1
@staticmethod
def parse_threads_list(r):