Changeset 5307e88
- Timestamp:
- 2015-10-21T06:24:08Z (9 years ago)
- Branches:
- master
- Children:
- 72d661e
- Parents:
- 0c78bb7
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/message.c
r0c78bb7 r5307e88 142 142 imcb_buddy_typing(ic, from, OPT_TYPING); 143 143 } 144 /* No need to send a "stopped typing" signal when there's a message. */ 145 else if (xt_find_node(node->children, "active") && (body == NULL)) { 144 else if (xt_find_node(node->children, "active")) { 146 145 bud->flags |= JBFLAG_DOES_XEP85; 147 imcb_buddy_typing(ic, from, 0); 146 147 /* No need to send a "stopped typing" signal when there's a message. */ 148 if (body == NULL) { 149 imcb_buddy_typing(ic, from, 0); 150 } 148 151 } else if (xt_find_node(node->children, "paused")) { 149 152 bud->flags |= JBFLAG_DOES_XEP85;
Note: See TracChangeset
for help on using the changeset viewer.