Changeset 23997
- Timestamp:
- 06/15/2008 06:32:55 PM (6 months ago)
- Files:
-
- trunk/Source/AIContactStatusEventsPlugin.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/AIContactStatusEventsPlugin.m
r23996 r23997 321 321 322 322 //Update away/not-away 323 newAwayNumber = [NSNumber numberWithBool:([inObject statusType] == AIAwayStatusType)];323 newAwayNumber = ([inObject statusType] == AIAwayStatusType) ? [NSNumber numberWithBool:YES] : nil; 324 324 awayChanged = [self updateCache:awayCache 325 325 forKey:@"Away" … … 327 327 listObject:inObject 328 328 performCompare:YES]; 329 329 330 330 //Update status message 331 331 newStatusMessage = [[inObject statusMessage] string];