Fix missing fid listing on NotifygetMessageResponse

This commit is contained in:
Adam 2014-08-30 12:14:36 +08:00
parent f6edcc8ea6
commit 1b16320492
1 changed files with 2 additions and 2 deletions

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 = ()