Commit 6c217c72 authored by Saul Ibarra's avatar Saul Ibarra

Move decorator to handle_notification

parent f913c037
......@@ -1825,6 +1825,7 @@ class AudioSessionItem(object):
stream = self.blink_session.streams.get('audio', Null)
stream.encryption.zrtp.verified = self.zrtp_widget.peer_verified
@run_in_gui_thread
def handle_notification(self, notification):
handler = getattr(self, '_NH_%s' % notification.name, Null)
handler(notification)
......@@ -1927,7 +1928,6 @@ class AudioSessionItem(object):
self.status = Status(notification.data.reason)
self._cleanup()
@run_in_gui_thread
def _NH_MediaStreamWillEnd(self, notification):
stream = notification.sender
if stream.type == 'audio' and stream.blink_session.items.audio is self:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment