Remove DDG forwarder from SH (#3888)

This commit is contained in:
Justin Baur 2022-10-27 16:06:17 -04:00 committed by GitHub
parent 2ffafa1f23
commit e972e905c8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 0 deletions

View File

@ -46,6 +46,11 @@ export class GeneratorComponent extends BaseGeneratorComponent {
this.forwardOptions.findIndex((o) => o.value === "firefoxrelay"),
1
);
// Also cannot use Duck Duck Go on self hosted web vaults due to CORS issues
this.forwardOptions.splice(
this.forwardOptions.findIndex((o) => o.value === "duckduckgo"),
1
);
}
}