mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-04-07 06:18:50 +00:00
Handle ExpandedFolders settings from v2
This commit is contained in:
@@ -328,12 +328,17 @@
|
||||
|
||||
- (WOResponse *) getFoldersStateAction
|
||||
{
|
||||
NSString *expandedFolders;
|
||||
id o;
|
||||
NSArray *expandedFolders;
|
||||
|
||||
[self _setupContext];
|
||||
expandedFolders = [moduleSettings objectForKey: @"ExpandedFolders"];
|
||||
o = [moduleSettings objectForKey: @"ExpandedFolders"];
|
||||
if ([o isKindOfClass: [NSString class]])
|
||||
expandedFolders = [o componentsSeparatedByString: @","];
|
||||
else
|
||||
expandedFolders = o;
|
||||
|
||||
return [self responseWithStatus: 200 andString: expandedFolders];
|
||||
return [self responseWithStatus: 200 andJSONRepresentation: expandedFolders];
|
||||
}
|
||||
|
||||
- (NSString *) verticalDragHandleStyle
|
||||
|
||||
Reference in New Issue
Block a user