diff --git a/packages/hydrooj/src/lib/i18n.ts b/packages/hydrooj/src/lib/i18n.ts index 00ef4d3c..022a9d61 100644 --- a/packages/hydrooj/src/lib/i18n.ts +++ b/packages/hydrooj/src/lib/i18n.ts @@ -7,7 +7,7 @@ declare global { } String.prototype.translate = function translate(...languages: string[]) { - if (languages[0].startsWith('en')) { + if (languages[0]?.startsWith('en')) { // For most use cases, source text equals to translated text in English. // So if it doesn't exist, we should use the original text instead of fallback. return locales[languages[0]]?.[this] || locales['en']?.[this] || this;