fix(mail): fallback to the default identity when replying/forwarding

pull/284/head^2
Francis Lachapelle 2020-09-10 12:17:55 -04:00
parent f4f15f1c91
commit 64a8ce4048
1 changed files with 5 additions and 0 deletions

View File

@ -263,6 +263,11 @@
}
}
if (!identity)
{
identity = [[context activeUser] defaultIdentity];
}
if (identity)
{
signature = [identity objectForKey: @"signature"];