Changeset 14114
- Timestamp:
- 11/20/2005 06:42:15 PM (3 years ago)
- Files:
-
- trunk/Source/AIContentController.m (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/AIContentController.m
r12887 r14114 185 185 userInfo:[NSDictionary dictionaryWithObjectsAndKeys:inObject,@"Object",nil]]; 186 186 } 187 188 //Track that we are in the process of receiving this object 189 [objectsBeingReceived addObject:inObject]; 190 187 191 188 //Run the object through our incoming content filters 192 189 if ([inObject filterContent]) { 190 //Track that we are in the process of receiving this object 191 [objectsBeingReceived addObject:inObject]; 192 193 193 [self filterAttributedString:[inObject message] 194 194 usingFilterType:AIFilterContent … … 235 235 //Only proceed if the chat allows it; if it doesn't, it will handle calling this method again when it is ready 236 236 if ([[inObject chat] willBeginSendingContentObject:inObject]) { 237 237 238 //Run the object through our outgoing content filters 238 239 if ([inObject filterContent]) { 240 //Track that we are in the process of send this object 241 [objectsBeingReceived addObject:inObject]; 242 239 243 [self filterAttributedString:[inObject message] 240 244 usingFilterType:AIFilterContent