Skip to content

Commit

Permalink
Patch bad migration, sanitize bad value (#2179)
Browse files Browse the repository at this point in the history
  • Loading branch information
estrattonbailey authored Dec 11, 2023
1 parent 3592f6f commit bae63f9
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 3 deletions.
12 changes: 12 additions & 0 deletions src/locale/helpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,15 @@ export function getTranslatorLink(text: string, lang: string): string {
text,
)}`
}

export function sanitizeAppLanguageSetting(appLanguage: string) {
const langs = appLanguage.split(',').filter(Boolean)

for (const lang of langs) {
if (['en', 'hi'].includes(lang)) {
return lang
}
}

return 'en'
}
3 changes: 2 additions & 1 deletion src/locale/i18n.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import {i18n} from '@lingui/core'
import {useLanguagePrefs} from '#/state/preferences'
import {messages as messagesEn} from '#/locale/locales/en/messages'
import {messages as messagesHi} from '#/locale/locales/hi/messages'
import {sanitizeAppLanguageSetting} from '#/locale/helpers'

export const locales = {
en: 'English',
Expand All @@ -26,6 +27,6 @@ export async function dynamicActivate(locale: string) {
export async function useLocaleLanguage() {
const {appLanguage} = useLanguagePrefs()
useEffect(() => {
dynamicActivate(appLanguage)
dynamicActivate(sanitizeAppLanguageSetting(appLanguage))
}, [appLanguage])
}
3 changes: 2 additions & 1 deletion src/locale/i18n.web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import {useEffect} from 'react'
import {i18n} from '@lingui/core'

import {useLanguagePrefs} from '#/state/preferences'
import {sanitizeAppLanguageSetting} from '#/locale/helpers'

export const locales = {
en: 'English',
Expand Down Expand Up @@ -29,6 +30,6 @@ export async function dynamicActivate(locale: string) {
export async function useLocaleLanguage() {
const {appLanguage} = useLanguagePrefs()
useEffect(() => {
dynamicActivate(appLanguage)
dynamicActivate(sanitizeAppLanguageSetting(appLanguage))
}, [appLanguage])
}
3 changes: 2 additions & 1 deletion src/state/persisted/legacy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,8 @@ export function transform(legacy: Partial<LegacySchema>): Schema {
legacy.preferences?.postLanguageHistory ||
defaults.languagePrefs.postLanguageHistory,
appLanguage:
legacy.preferences?.postLanguage || defaults.languagePrefs.appLanguage,
legacy.preferences?.primaryLanguage ||
defaults.languagePrefs.appLanguage,
},
requireAltTextEnabled:
legacy.preferences?.requireAltTextEnabled ||
Expand Down

0 comments on commit bae63f9

Please sign in to comment.