Do not send chatstates when the contact is offline
This commit is contained in:
parent
7f322e7d88
commit
f55a0c92f2
2 changed files with 20 additions and 6 deletions
|
@ -626,7 +626,7 @@ class Core(object):
|
|||
self.events.trigger('conversation_msg', message, conversation)
|
||||
body = xhtml.get_body_from_message_stanza(message)
|
||||
if roster.get_contact_by_jid(jid.bare):
|
||||
remote_nick = roster.get_contact_by_jid(jid.bare).get_name() or jid.user
|
||||
remote_nick = roster.get_contact_by_jid(jid.bare).name or jid.user
|
||||
else:
|
||||
remote_nick = jid.user
|
||||
conversation._text_buffer.add_message(body, nickname=remote_nick, nick_color=get_theme().COLOR_REMOTE_USER)
|
||||
|
@ -1590,10 +1590,10 @@ class Core(object):
|
|||
when enter is pressed on the roster window
|
||||
"""
|
||||
if isinstance(roster_row, Contact):
|
||||
if not self.get_conversation_by_jid(roster_row.get_bare_jid()):
|
||||
self.open_conversation_window(roster_row.get_bare_jid())
|
||||
if not self.get_conversation_by_jid(roster_row.bare_jid):
|
||||
self.open_conversation_window(roster_row.bare_jid)
|
||||
else:
|
||||
self.focus_tab_named(roster_row.get_bare_jid())
|
||||
self.focus_tab_named(roster_row.bare_jid)
|
||||
if isinstance(roster_row, Resource):
|
||||
if not self.get_conversation_by_jid(roster_row.get_jid().full):
|
||||
self.open_conversation_window(roster_row.get_jid().full)
|
||||
|
|
18
src/tabs.py
18
src/tabs.py
|
@ -1975,17 +1975,31 @@ class ConversationTab(ChatTab):
|
|||
return False
|
||||
|
||||
def on_lose_focus(self):
|
||||
contact = roster.get_contact_by_jid(self.get_name())
|
||||
jid = JID(self.get_name())
|
||||
if jid.resource:
|
||||
resource = contact.get_resource_by_fulljid(jid.full)
|
||||
else:
|
||||
resource = contact.get_highest_priority_resource()
|
||||
self.state = 'normal'
|
||||
self.text_win.remove_line_separator()
|
||||
self.text_win.add_line_separator()
|
||||
if config.get('send_chat_states', 'true') == 'true' and not self.input.get_text() or not self.input.get_text().startswith('//'):
|
||||
self.send_chat_state('inactive')
|
||||
if resource:
|
||||
self.send_chat_state('inactive')
|
||||
|
||||
def on_gain_focus(self):
|
||||
contact = roster.get_contact_by_jid(self.get_name())
|
||||
jid = JID(self.get_name())
|
||||
if jid.resource:
|
||||
resource = contact.get_resource_by_fulljid(jid.full)
|
||||
else:
|
||||
resource = contact.get_highest_priority_resource()
|
||||
self.state = 'current'
|
||||
curses.curs_set(1)
|
||||
if config.get('send_chat_states', 'true') == 'true' and not self.input.get_text() or not self.input.get_text().startswith('//'):
|
||||
self.send_chat_state('active')
|
||||
if resource:
|
||||
self.send_chat_state('active')
|
||||
|
||||
def on_scroll_up(self):
|
||||
self.text_win.scroll_up(self.text_win.height-1)
|
||||
|
|
Loading…
Reference in a new issue