mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-06 09:20:43 +01:00
Change website default value to empty string. (#9127)
Fastmail API returns and error when passed a null value in forDomain. Empty string is the preferred blank option. Co-authored-by: yara <ybeadenkopf@fastmailteam.com>
This commit is contained in:
parent
e29025df28
commit
c37006c564
@ -14,6 +14,8 @@ export class FastmailForwarder implements Forwarder {
|
||||
throw "Unable to obtain Fastmail masked email account ID.";
|
||||
}
|
||||
|
||||
const forDomain = (options.website || "");
|
||||
|
||||
const requestInit: RequestInit = {
|
||||
redirect: "manual",
|
||||
cache: "no-store",
|
||||
@ -35,7 +37,7 @@ export class FastmailForwarder implements Forwarder {
|
||||
"new-masked-email": {
|
||||
state: "enabled",
|
||||
description: "",
|
||||
forDomain: options.website,
|
||||
forDomain: forDomain,
|
||||
emailPrefix: options.fastmail.prefix,
|
||||
},
|
||||
},
|
||||
|
@ -12,7 +12,7 @@ import { Forwarders } from "../options/constants";
|
||||
import { EmailPrefixOptions, ApiOptions } from "../options/forwarder-options";
|
||||
|
||||
export const DefaultFastmailOptions: ApiOptions & EmailPrefixOptions = Object.freeze({
|
||||
website: null,
|
||||
website: "",
|
||||
domain: "",
|
||||
prefix: "",
|
||||
token: "",
|
||||
|
Loading…
Reference in New Issue
Block a user