fix call to get_status_message
This commit is contained in:
parent
1a3a795908
commit
7eb30a1f77
1 changed files with 4 additions and 3 deletions
|
@ -2837,12 +2837,13 @@ class Interface:
|
||||||
shows[show] = [a]
|
shows[show] = [a]
|
||||||
else:
|
else:
|
||||||
shows[show].append(a)
|
shows[show].append(a)
|
||||||
for show in shows:
|
def on_message(message):
|
||||||
message = self.roster.get_status_message(show)
|
|
||||||
if message is None:
|
if message is None:
|
||||||
continue
|
return
|
||||||
for a in shows[show]:
|
for a in shows[show]:
|
||||||
self.roster.send_status(a, show, message)
|
self.roster.send_status(a, show, message)
|
||||||
|
for show in shows:
|
||||||
|
message = self.roster.get_status_message(show, on_message)
|
||||||
return False
|
return False
|
||||||
|
|
||||||
def show_systray(self):
|
def show_systray(self):
|
||||||
|
|
Loading…
Add table
Reference in a new issue