Adium

Changeset 23937

Show
Ignore:
Timestamp:
06/12/2008 08:04:48 AM (6 months ago)
Author:
am
Message:

Added = to the list of allowed characters. Fixes #10083. This should probably be handled in a cleaner way (e.g. by implementing the whole spec for this).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Plugins/Purple Service/ESJabberService.m

    r23071 r23937  
    9898        NSCharacterSet                  *returnSet; 
    9999 
    100         [allowedCharacters addCharactersInString:@"._@-()[]^%#|\\`"]; 
     100        [allowedCharacters addCharactersInString:@"._@-()[]^%#|\\`="]; 
    101101        returnSet = [allowedCharacters immutableCopy]; 
    102102        [allowedCharacters release]; 
     
    114114        NSCharacterSet                  *returnSet; 
    115115 
    116         [allowedCharacters addCharactersInString:@"._@-()[]^%#|\\/+`"]; 
     116        [allowedCharacters addCharactersInString:@"._@-()[]^%#|\\/+`="]; 
    117117        returnSet = [allowedCharacters immutableCopy]; 
    118118        [allowedCharacters release];