Added empty check_streams to mastodon session so it won't raise errors for a while

This commit is contained in:
Manuel Cortez 2022-11-07 12:24:56 -06:00
parent 0e814a765a
commit b593071364
No known key found for this signature in database
GPG Key ID: 9E0735CA15EFE790

View File

@ -86,4 +86,7 @@ class Session(base.baseSession):
user_alias = aliases.get(user.id_str)
if user_alias != None:
return user_alias
return user.name
return user.name
def check_streams(self):
pass