fix/various fixes

This commit is contained in:
Kevin
2026-03-20 15:15:35 +08:00
parent 7f57f96c25
commit 7317bf10cd
112 changed files with 3790 additions and 2242 deletions

View File

@@ -56,6 +56,7 @@ export async function clearAppLanguage(): Promise<void> {
export async function getLargeText(): Promise<boolean> {
const v = await getStored(KEY_LARGE_TEXT);
if (v == null || v === '') return true;
return v === 'true';
}