Changeset 0c78bb7
- Timestamp:
- 2015-10-21T06:05:17Z (9 years ago)
- Branches:
- master
- Children:
- 5307e88
- Parents:
- e4145d9
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/jabber.c
re4145d9 r0c78bb7 592 592 { 593 593 struct jabber_data *jd = ic->proto_data; 594 struct jabber_buddy *bud ;594 struct jabber_buddy *bud, *bare; 595 595 596 596 /* Enable typing notification related code from now. */ 597 597 jd->flags |= JFLAG_WANT_TYPING; 598 598 599 if ((bud = jabber_buddy_by_jid(ic, who, 0)) == NULL) { 599 if ((bud = jabber_buddy_by_jid(ic, who, 0)) == NULL || 600 (bare = jabber_buddy_by_jid(ic, who, GET_BUDDY_BARE)) == NULL) { 600 601 /* Sending typing notifications to unknown buddies is 601 602 unsupported for now. Shouldn't be a problem, I think. */ … … 603 604 } 604 605 605 if (bud->flags & JBFLAG_DOES_XEP85) { 606 607 if (bud->flags & JBFLAG_DOES_XEP85 || bare->flags & JBFLAG_DOES_XEP85) { 606 608 /* We're only allowed to send this stuff if we know the other 607 side supports it. */ 609 side supports it. If the bare JID has the flag, all other 610 resources get it, too (That is the case in gtalk) */ 608 611 609 612 struct xt_node *node;
Note: See TracChangeset
for help on using the changeset viewer.