(fix) Show user's default email address

Fixes #3473
pull/195/head
Francis Lachapelle 2016-02-01 10:41:22 -05:00
parent 020f362aa1
commit b09e7163dd
1 changed files with 5 additions and 1 deletions

View File

@ -470,7 +470,11 @@
- (NSString *) userEmail
{
return [[context activeUser] systemEmail];
NSDictionary *identity;
identity = [[context activeUser] defaultIdentity];
return [identity objectForKey: @"email"];
}