use correct jid (not always jid_with_resource) in popup. fixes #2569
This commit is contained in:
parent
cdd9618635
commit
b2d4177962
|
@ -604,7 +604,7 @@ class Interface:
|
||||||
msg = message
|
msg = message
|
||||||
if subject:
|
if subject:
|
||||||
msg = _('Subject: %s') % subject + '\n' + msg
|
msg = _('Subject: %s') % subject + '\n' + msg
|
||||||
notify.notify('new_message', full_jid_with_resource, account, [msg_type,
|
notify.notify('new_message', jid_of_control, account, [msg_type,
|
||||||
first, nickname, msg], advanced_notif_num)
|
first, nickname, msg], advanced_notif_num)
|
||||||
|
|
||||||
if self.remote_ctrl:
|
if self.remote_ctrl:
|
||||||
|
|
Loading…
Reference in New Issue