Merge pull request #77 from madsmtm/patch-1

Fixed _getSticky
This commit is contained in:
Taehoon Kim
2017-01-30 21:42:27 +09:00
committed by GitHub

View File

@@ -486,7 +486,11 @@ class Client(object):
newer api needs these parameter to work. newer api needs these parameter to work.
''' '''
data = {"msgs_recv": 0} data = {
"msgs_recv": 0,
"channel": self.user_channel,
"clientid": self.client_id
}
r = self._get(StickyURL, data) r = self._get(StickyURL, data)
j = get_json(r.text) j = get_json(r.text)