diff options
author | Lorenz Diener <[email protected]> | 2019-10-11 22:32:51 +0200 |
---|---|---|
committer | Lorenz Diener <[email protected]> | 2019-10-11 22:32:51 +0200 |
commit | a8e49756f4524f79a8c1269b76e97c00d44051cd (patch) | |
tree | f358e9707781ece6d2ba626c88391ce48eed0db3 /mastodon | |
parent | a36fbd4bc3250bec74e6b304760f000c58d9feb2 (diff) | |
download | mastodon.py-a8e49756f4524f79a8c1269b76e97c00d44051cd.tar.gz |
Add a test case for conversation streaming
Diffstat (limited to 'mastodon')
-rw-r--r-- | mastodon/streaming.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mastodon/streaming.py b/mastodon/streaming.py index 098863f..214ed1c 100644 --- a/mastodon/streaming.py +++ b/mastodon/streaming.py | |||
@@ -162,6 +162,7 @@ class CallbackStreamListener(StreamListener): | |||
162 | self.local_update_handler = local_update_handler | 162 | self.local_update_handler = local_update_handler |
163 | self.delete_handler = delete_handler | 163 | self.delete_handler = delete_handler |
164 | self.notification_handler = notification_handler | 164 | self.notification_handler = notification_handler |
165 | self.conversation_handler = conversation_handler | ||
165 | 166 | ||
166 | def on_update(self, status): | 167 | def on_update(self, status): |
167 | if self.update_handler != None: | 168 | if self.update_handler != None: |