Changeset 22825
- Timestamp:
- 03/04/2008 08:28:17 PM (9 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/adium-1.2/Plugins/Purple Service/SLPurpleCocoaAdapter.m
r22750 r22825 178 178 purple_buddy_icons_set_cache_dir([[[adium cachesPath] stringByExpandingTildeInPath] UTF8String]); 179 179 180 /* Delete blist.xml once when 1. 0 runs to clear out any old silliness */181 if (![[NSUserDefaults standardUserDefaults] boolForKey:@"Adium 1. 0deleted 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"]) { 182 182 [[NSFileManager defaultManager] removeFileAtPath: 183 183 [[[NSString stringWithUTF8String:purple_user_dir()] stringByAppendingPathComponent:@"blist"] stringByAppendingPathExtension:@"xml"] 184 184 handler:nil]; 185 185 [[NSUserDefaults standardUserDefaults] setBool:YES 186 forKey:@"Adium 1. 0deleted blist.xml"];186 forKey:@"Adium 1.2.4 deleted blist.xml"]; 187 187 } 188 188