SIGN_IN --> SIGNED_IN
This commit is contained in:
parent
21116c221e
commit
8734c5f2cb
|
@ -1761,7 +1761,7 @@ class Connection:
|
||||||
self.get_bookmarks()
|
self.get_bookmarks()
|
||||||
|
|
||||||
#Inform GUI we just signed in
|
#Inform GUI we just signed in
|
||||||
self.dispatch('SIGN_IN', ())
|
self.dispatch('SIGNED_IN', ())
|
||||||
|
|
||||||
def get_signed_msg(self, msg):
|
def get_signed_msg(self, msg):
|
||||||
signed = ''
|
signed = ''
|
||||||
|
|
|
@ -951,8 +951,8 @@ class Interface:
|
||||||
def handle_event_vcard_not_published(self, account, array):
|
def handle_event_vcard_not_published(self, account, array):
|
||||||
dialogs.InformationDialog(_('vCard publication failed'), _('There was an error while publishing your personal information, try again later.'))
|
dialogs.InformationDialog(_('vCard publication failed'), _('There was an error while publishing your personal information, try again later.'))
|
||||||
|
|
||||||
def handle_event_sign_in(self, account, empty):
|
def handle_event_signed_in(self, account, empty):
|
||||||
# SIGN_IN event is emitted when we sign in
|
# SIGNED_IN event is emitted when we sign in
|
||||||
|
|
||||||
# join already open groupchats
|
# join already open groupchats
|
||||||
for acct in gajim.connections:
|
for acct in gajim.connections:
|
||||||
|
@ -1188,7 +1188,7 @@ class Interface:
|
||||||
'VCARD_PUBLISHED': self.handle_event_vcard_published,
|
'VCARD_PUBLISHED': self.handle_event_vcard_published,
|
||||||
'VCARD_NOT_PUBLISHED': self.handle_event_vcard_not_published,
|
'VCARD_NOT_PUBLISHED': self.handle_event_vcard_not_published,
|
||||||
'ASK_NEW_NICK': self.handle_event_ask_new_nick,
|
'ASK_NEW_NICK': self.handle_event_ask_new_nick,
|
||||||
'SIGN_IN': self.handle_event_sign_in,
|
'SIGNED_IN': self.handle_event_signed_in,
|
||||||
}
|
}
|
||||||
|
|
||||||
def exec_event(self, account):
|
def exec_event(self, account):
|
||||||
|
|
Loading…
Reference in New Issue