Adium

Changeset 17475

Show
Ignore:
Timestamp:
08/23/2006 09:07:26 PM (2 years ago)
Author:
evands
Message:

I suspect this fixes problems adding qq contacts, which have hyphens in their UIDs, and possible receiving messages from them. Refs #5258

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Plugins/Gaim Service/ESQQService.m

    r17181 r17475  
    4242} 
    4343- (NSCharacterSet *)allowedCharacters{ 
    44         return [NSCharacterSet alphanumericCharacterSet]; 
     44        NSMutableCharacterSet   *allowedCharacters = [[NSCharacterSet alphanumericCharacterSet] mutableCopy]; 
     45        NSCharacterSet                  *returnSet; 
     46 
     47        [allowedCharacters addCharactersInString:@"-"]; 
     48        returnSet = [allowedCharacters immutableCopy]; 
     49        [allowedCharacters release]; 
     50 
     51        return [returnSet autorelease]; 
    4552} 
    4653- (NSCharacterSet *)ignoredCharacters{