web/i18n/error: update youtube main instance error text

This commit is contained in:
wukko 2026-03-30 14:48:22 +06:00
parent 25df76ed7c
commit e6a987cd4f
No known key found for this signature in database
GPG key ID: 3E30B3F26C7B4AA2
3 changed files with 3 additions and 3 deletions

View file

@ -215,7 +215,7 @@ export function extract(url, enabledServices = env.enabledServices) {
// show a different message when youtube is disabled on official instances
// as it only happens when shit hits the fan
if (new URL(env.apiURL).hostname.endsWith(".imput.net") && host === "youtube") {
return { error: "youtube.temporary_disabled" };
return { error: "youtube.disabled_main_instance" };
}
return { error: "service.disabled" };
}