This reverts commit d0914ac81f
.
This commit is contained in:
parent
d0914ac81f
commit
0ef5ab79c6
|
@ -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