mirror of
https://github.com/inverse-inc/sogo.git
synced 2026-08-29 02:07:36 +00:00
feat(mail): Add location in email ics representation template
This commit is contained in:
@@ -583,9 +583,19 @@
|
||||
[[person partStatWithDefault] lowercaseString], @"partstat", nil]];
|
||||
}
|
||||
|
||||
[d setObject: a forKey: @"participants"];
|
||||
[d setObject: a forKey: @"participants"];
|
||||
|
||||
return d;
|
||||
}
|
||||
|
||||
- (BOOL) hasLocation {
|
||||
return [self inEvent] != nil
|
||||
&& [[self inEvent] location] != nil
|
||||
&& [[[self inEvent] location] length] > 0;
|
||||
}
|
||||
|
||||
- (NSString *) location {
|
||||
return [[self inEvent] location];
|
||||
}
|
||||
|
||||
@end /* UIxMailPartICalViewer */
|
||||
|
||||
Reference in New Issue
Block a user