print who changed the subject in the groupchat window
This commit is contained in:
parent
78773f0308
commit
1c1a11a9e3
|
@ -2758,6 +2758,9 @@ class plugin:
|
||||||
if not self.windows[account]['gc'].has_key(jid):
|
if not self.windows[account]['gc'].has_key(jid):
|
||||||
return
|
return
|
||||||
self.windows[account]['gc'][jid].set_subject(array[1])
|
self.windows[account]['gc'][jid].set_subject(array[1])
|
||||||
|
if len(jids) > 1:
|
||||||
|
self.windows[account]['gc'][jid].print_conversation(\
|
||||||
|
'%s has set the subject to %s' % (jids[1], array[1]), jid)
|
||||||
|
|
||||||
def handle_event_bad_passphrase(self, account, array):
|
def handle_event_bad_passphrase(self, account, array):
|
||||||
warning_dialog(_("Your GPG passphrase is wrong, so you are connected without your GPG key."))
|
warning_dialog(_("Your GPG passphrase is wrong, so you are connected without your GPG key."))
|
||||||
|
|
Loading…
Reference in New Issue