(fix) fixed task sorting on multiple categories

This commit is contained in:
Ludovic Marcotte
2017-03-14 14:18:53 -04:00
parent cb532de83a
commit ce8f2e9481
2 changed files with 6 additions and 0 deletions
+5
View File
@@ -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];