add support to set retryTTL and fix if once update error, it will retry every second

This commit is contained in:
2021-01-18 19:18:16 +08:00
parent ed4cf91fd0
commit 477ff6afc4
6 changed files with 57 additions and 9 deletions

View File

@@ -133,5 +133,8 @@ class RSSEntry:
self.id = None
if data is not None and data[4] is not None:
self.id = data[4]
self.lasterrortime = None
if data is not None and data[5] is not None:
self.lasterrortime = data[5]
self.chatList = []
self.hashList = HashEntries(maxCount)