extension: Don't put responseHeadersUnsupported in config

This commit is contained in:
Daniel Jacobs 2024-08-09 15:31:51 -04:00
parent 52ef345dae
commit 688c25e85f
1 changed files with 4 additions and 0 deletions

View File

@ -101,6 +101,10 @@ export async function getExplicitOptions(): Promise<Options> {
delete options[key];
}
}
// This value is specific to the internal extension pages, and is always "default"
if ("responseHeadersUnsupported" in options) {
delete options["responseHeadersUnsupported"];
}
return options;
}