fix(mail): show comment attribute of iTIP replies

Fixes #5410
This commit is contained in:
Francis Lachapelle
2021-11-22 16:20:56 -05:00
parent e85576cbb7
commit ff1eecaf5a
3 changed files with 14 additions and 7 deletions
+2 -2
View File
@@ -172,12 +172,12 @@
- (void) setUserComment: (NSString *) _value
{
[[self uniqueChildWithTag: @"usercomment"] setSingleValue: _value forKey: @""];
[[self uniqueChildWithTag: @"comment"] setSingleValue: _value forKey: @""];
}
- (NSString *) userComment
{
return [[self uniqueChildWithTag: @"usercomment"] flattenedValuesForKey: @""];
return [[self uniqueChildWithTag: @"comment"] flattenedValuesForKey: @""];
}
- (void) setStatus: (NSString *) _value