diff --git a/UI/Scheduler/UIxComponentEditor.m b/UI/Scheduler/UIxComponentEditor.m index 398c2cd15..9c3e7cbc5 100644 --- a/UI/Scheduler/UIxComponentEditor.m +++ b/UI/Scheduler/UIxComponentEditor.m @@ -872,10 +872,16 @@ iRANGE(2); - (NSString *) organizerName { NSDictionary *profile; + NSString *s; profile = [[[self organizerProfile] allValues] lastObject]; + + s = [profile objectForKey: @"name"]; - return [profile objectForKey: @"name"]; + if ([s length] == 0) + s = [profile objectForKey: @"email"]; + + return s; } - (NSString *) jsonOrganizer