Code fixes

This commit is contained in:
2015-05-26 20:23:02 -05:00
parent 831bbc2f2f
commit 5976caf736
6 changed files with 57 additions and 15 deletions

View File

@@ -253,9 +253,8 @@ class Session(object):
""" Gets muted users (oh really?)."""
# self.db["muted_users"] = self.twitter.twitter.get_muted_users_ids()["ids"]
#This really needs to be fixed (#30). Return an empty list as a hacky workaround, remove this comment and the line below when fixed.
self.db["muted_users"] = []
self.db["muted_users"] = self.twitter.twitter.list_mute_ids()["ids"]
@_require_login
def get_stream(self, name, function, *args, **kwargs):