From dc536c45deb3bff8f977bf3f9c4ed54e335f4cc1 Mon Sep 17 00:00:00 2001 From: Manuel Cortez Date: Wed, 15 Aug 2018 12:29:01 -0500 Subject: [PATCH] Fixed a few typos --- src/controller/mainController.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/controller/mainController.py b/src/controller/mainController.py index f2efa67c..4d2c92e0 100644 --- a/src/controller/mainController.py +++ b/src/controller/mainController.py @@ -861,7 +861,7 @@ class Controller(object): return tl = buffersController.baseBufferController(self.view.nb, "get_user_timeline", "%s-timeline" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="tweet_timeline.ogg", user_id=usr["id_str"], tweet_mode="extended") try: - tl.start_stream() + tl.start_stream(play_sound=False) except TwythonAuthError: commonMessageDialogs.unauthorized() return @@ -881,7 +881,7 @@ class Controller(object): return tl = buffersController.baseBufferController(self.view.nb, "get_favorites", "%s-favorite" % (usr["id_str"],), buff.session, buff.session.db["user_name"], bufferType=None, sound="favourites_timeline_updated.ogg", user_id=usr["id_str"], tweet_mode="extended") try: - tl.start_stream() + tl.start_stream(play_sound=False) except TwythonAuthError: commonMessageDialogs.unauthorized() return @@ -900,7 +900,7 @@ class Controller(object): return tl = buffersController.peopleBufferController(self.view.nb, "get_followers_list", "%s-followers" % (usr["id_str"],), buff.session, buff.session.db["user_name"], sound="new_event.ogg", user_id=usr["id_str"]) try: - tl.start_stream() + tl.start_stream(play_sound=False) except TwythonAuthError: commonMessageDialogs.unauthorized() return