Adium

Changeset 22825

Show
Ignore:
Timestamp:
03/04/2008 08:28:17 PM (9 months ago)
Author:
evands
Message:

Merged [22824]: We need to delete the blist.xml file on first launch to fix the Yahoo blocked contacts problem (#7744).

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/adium-1.2/Plugins/Purple Service/SLPurpleCocoaAdapter.m

    r22750 r22825  
    178178        purple_buddy_icons_set_cache_dir([[[adium cachesPath] stringByExpandingTildeInPath] UTF8String]); 
    179179 
    180         /* Delete blist.xml once when 1.0 runs to clear out any old silliness */ 
    181         if (![[NSUserDefaults standardUserDefaults] boolForKey:@"Adium 1.0 deleted blist.xml"]) { 
     180        /* Delete blist.xml once when 1.2.4 runs to clear out any old silliness, including improperly blocked Yahoo contacts */ 
     181        if (![[NSUserDefaults standardUserDefaults] boolForKey:@"Adium 1.2.4 deleted blist.xml"]) { 
    182182                [[NSFileManager defaultManager] removeFileAtPath: 
    183183                        [[[NSString stringWithUTF8String:purple_user_dir()] stringByAppendingPathComponent:@"blist"] stringByAppendingPathExtension:@"xml"] 
    184184                                                                                                 handler:nil]; 
    185185                [[NSUserDefaults standardUserDefaults] setBool:YES 
    186                                                                                                 forKey:@"Adium 1.0 deleted blist.xml"]; 
     186                                                                                                forKey:@"Adium 1.2.4 deleted blist.xml"]; 
    187187        } 
    188188