mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-09 21:45:26 +00:00
(fix) don't always fetch the sorting columns
This commit is contained in:
@@ -12,6 +12,7 @@ Bug fixes
|
||||
- [web] fixed handling of duplicate recipients (#4597)
|
||||
- [web] fixed folder export when XSRF validation is enabled (#4502)
|
||||
- [web] don't encode filename extension when exporting folders
|
||||
- [core] don't always fetch the sorting columns
|
||||
|
||||
4.0.4 (2018-10-23)
|
||||
------------------
|
||||
|
||||
@@ -464,7 +464,8 @@ static GCSStringFormatter *stringFormatter = nil;
|
||||
sortOrderingsList = [sortOrderings objectEnumerator];
|
||||
while ((ordering = [sortOrderingsList nextObject]))
|
||||
{
|
||||
[allFields addObject: [ordering key]];
|
||||
if (![allFields containsObject: [ordering key]])
|
||||
[allFields addObject: [ordering key]];
|
||||
}
|
||||
}
|
||||
requirement = [self _tableRequirementForFields: allFields
|
||||
|
||||
Reference in New Issue
Block a user