Remove WEBSITE_ICONS_ENABLED and always enable website icons

This commit is contained in:
shuaiplus
2026-07-06 22:56:36 +08:00
parent f532d3ace3
commit 57c5ef9da6
7 changed files with 6 additions and 10 deletions
+1 -1
View File
@@ -50,7 +50,7 @@ export interface WebBootstrapResponse {
}
function isWebsiteIconProxyEnabled(env: Env): boolean {
return ['1', 'true', 'yes', 'on'].includes(String(env.WEBSITE_ICONS_ENABLED || '').trim().toLowerCase());
return true;
}
function isSameOriginWriteRequest(request: Request): boolean {