[Sandbox Dialog] Fix removing newly added paths
Newly added paths weren't adding all of the necessary data to the list storage to make it possible to remove them without restarting the player. Oops. Signed-off-by: Christopher Snowhill <kode54@gmail.com>xcode15
parent
c612994cb2
commit
9d2d29d0f4
|
@ -76,7 +76,7 @@
|
|||
if(err) {
|
||||
ALog(@"Error saving bookmark: %@", [err localizedDescription]);
|
||||
} else {
|
||||
[self addObject:@{ @"path": [url path], @"valid": NSLocalizedPrefString(@"ValidYes") }];
|
||||
[self addObject:@{ @"path": [url path], @"valid": NSLocalizedPrefString(@"ValidYes"), @"isFolder": @(token.folder), @"token": token }];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue