mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-05-22 03:45:25 +00:00
Fix for bug #2461
This commit is contained in:
@@ -64,6 +64,9 @@
|
||||
return isStillRelevent;
|
||||
}
|
||||
|
||||
//
|
||||
//
|
||||
//
|
||||
- (NSMutableDictionary *) quickRecord
|
||||
{
|
||||
NSMutableDictionary *row;
|
||||
@@ -88,7 +91,15 @@
|
||||
title = [self summary];
|
||||
if (![title isNotNull])
|
||||
title = @"";
|
||||
|
||||
if ([title length] > 1000)
|
||||
title = [title substringToIndex: 1000];
|
||||
|
||||
location = [self location];
|
||||
|
||||
if ([location length] > 255)
|
||||
location = [location substringToIndex: 255];
|
||||
|
||||
sequence = [self sequence];
|
||||
accessClass = [self symbolicAccessClass];
|
||||
isAllDay = [self isAllDay];
|
||||
|
||||
Reference in New Issue
Block a user