mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-30 15:45:26 +00:00
(fix) fixed task sorting on multiple categories
This commit is contained in:
@@ -266,7 +266,12 @@
|
||||
NSComparisonResult result;
|
||||
|
||||
selfCategory = [self objectAtIndex: taskCategoryIndex];
|
||||
if ([selfCategory isKindOfClass: [NSArray class]])
|
||||
selfCategory = [(id)selfCategory lastObject];
|
||||
|
||||
otherCategory = [otherTask objectAtIndex: taskCategoryIndex];
|
||||
if ([otherCategory isKindOfClass: [NSArray class]])
|
||||
otherCategory = [(id)otherCategory lastObject];
|
||||
|
||||
if ([selfCategory isNotNull] && [otherCategory isNotNull])
|
||||
result = [selfCategory caseInsensitiveCompare: otherCategory];
|
||||
|
||||
Reference in New Issue
Block a user