fix disappearing crypto icon
This commit is contained in:
parent
b823ee5611
commit
8b1abeba54
1 changed files with 5 additions and 2 deletions
|
@ -142,7 +142,10 @@ class MessageControl:
|
||||||
if self.resource:
|
if self.resource:
|
||||||
jid += '/' + self.resource
|
jid += '/' + self.resource
|
||||||
|
|
||||||
if oldsession.enable_encryption:
|
crypto_changed = bool(session and session.enable_encryption) != \
|
||||||
|
bool(oldsession and oldsession.enable_encryption)
|
||||||
|
|
||||||
|
if crypto_changed:
|
||||||
self.print_esession_details()
|
self.print_esession_details()
|
||||||
|
|
||||||
def send_message(self, message, keyID = '', type = 'chat',
|
def send_message(self, message, keyID = '', type = 'chat',
|
||||||
|
|
Loading…
Add table
Reference in a new issue