1
0
mirror of https://github.com/moparisthebest/SickRage synced 2024-12-13 11:32:20 -05:00

Merge pull request #761 from adam111316/adba_notifyget

Fix missing fid listing on NotifygetMessageResponse
This commit is contained in:
adam111316 2014-08-30 12:18:16 +08:00
commit 8e37afbcc5

View File

@ -987,12 +987,12 @@ class NotifygetNotifyResponse(Response):
count - count
date - date
name - anime name
fid - comma separated list of fids
"""
Response.__init__(self, cmd, restag, rescode, resstr, datalines)
self.codestr = 'NOTIFYGET_NOTIFY'
self.codehead = ()
self.codetail = ('aid', 'type', 'count', 'date', 'name')
self.codetail = ('aid', 'type', 'count', 'date', 'name', 'fid')
self.coderep = ()