Merge branch 'io' into merge-upstream

This commit is contained in:
riku6460 2023-10-10 20:58:57 +09:00
commit 2f437e3924
No known key found for this signature in database
GPG key ID: 27414FA27DB94CF6
11 changed files with 171 additions and 24 deletions

View file

@ -13,7 +13,7 @@ class SwLang {
public cacheName = `mk-cache-${_VERSION_}`;
public lang: Promise<string> = get('lang').then(async prelang => {
if (!prelang) return 'en-US';
if (!prelang) return 'ja-JP';
return prelang;
});