Differences From Artifact [9d5fdb884e]:
- File src/XMPPPresence.m — part of check-in [e009b1b5c8] at 2012-01-25 20:55:23 on branch trunk — If a presence has no type, assume "available", as per RFC 6121. (user: js, size: 2703) [annotate] [blame] [check-ins using]
To Artifact [a795a3af8b]:
- File src/XMPPPresence.m — part of check-in [9d27e39805] at 2012-01-26 13:52:17 on branch trunk — Fix XMPPPresence's getter for type (user: florob@babelmonkeys.de, size: 2738) [annotate] [blame] [check-ins using]
︙ | |||
77 78 79 80 81 82 83 84 85 86 87 88 89 90 | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 | + | ID: ID_]; } - (OFString*)type { if (type == nil) return @"available"; return [[type copy] autorelease]; } - (void)addShow: (OFString*)show { [self addChild: [OFXMLElement elementWithName: @"show" namespace: XMPP_NS_CLIENT stringValue: show]]; |
︙ |