mirror of
https://github.com/bitwarden/mobile
synced 2025-12-05 23:53:33 +00:00
Minor changes for readability
This commit is contained in:
@@ -61,7 +61,7 @@ namespace Bit.Core.Services.EmailForwarders
|
||||
["description"] = "",
|
||||
["url"] = "",
|
||||
["emailPrefix"] = "",
|
||||
["forDomain"] = ( null == options.Website ? "" : options.Website )
|
||||
["forDomain"] = options.Website ?? ""
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
@@ -150,8 +150,9 @@ namespace Bit.Core.Services
|
||||
|
||||
if (options.ServiceType == ForwardedEmailServiceType.Fastmail)
|
||||
{
|
||||
var fastmailEmailOptions = (FastmailForwarderOptions)options.GetForwarderOptions();
|
||||
return await new FastmailForwarder()
|
||||
.GenerateAsync(_apiService, (FastmailForwarderOptions)options.GetForwarderOptions());
|
||||
.GenerateAsync(_apiService, fastmailEmailOptions);
|
||||
}
|
||||
|
||||
BaseForwarder<ForwarderOptions> simpleForwarder = null;
|
||||
|
||||
Reference in New Issue
Block a user