From 1b163204926009a6bb6e54f34ef2f58843388b2f Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 30 Aug 2014 12:14:36 +0800 Subject: [PATCH] Fix missing fid listing on NotifygetMessageResponse --- lib/adba/aniDBresponses.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/adba/aniDBresponses.py b/lib/adba/aniDBresponses.py index d27df091..597021ef 100644 --- a/lib/adba/aniDBresponses.py +++ b/lib/adba/aniDBresponses.py @@ -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 = ()