mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
Fixing crash in Organizer.
This commit is contained in:
parent
9cc3b1c950
commit
4bacc8abaa
1 changed files with 5 additions and 3 deletions
|
@ -545,10 +545,12 @@ static const CGFloat kFolderTitleHeight = 36.0;
|
|||
|
||||
- (void)updateDictFolders {
|
||||
NSMutableDictionary *folders = [self.appDelegate.dictFolders mutableCopy];
|
||||
NSDictionary *everything = folders[@"everything"];
|
||||
if ([folders objectForKey:@"everything"]) {
|
||||
NSDictionary *everything = folders[@"everything"];
|
||||
|
||||
[folders removeObjectForKey:@"everything"];
|
||||
[folders setObject:everything forKey:@" "];
|
||||
[folders removeObjectForKey:@"everything"];
|
||||
[folders setObject:everything forKey:@" "];
|
||||
}
|
||||
|
||||
self.dictFolders = folders;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue