Add setting to bypass region restriction

This commit is contained in:
redphx
2024-07-13 17:27:40 +07:00
parent ce1901b300
commit ef2e0892bc
7 changed files with 33 additions and 9 deletions

View File

@@ -15,6 +15,7 @@ const SETTINGS_UI = {
'Better xCloud': {
items: [
PrefKey.BETTER_XCLOUD_LOCALE,
PrefKey.SERVER_BYPASS_RESTRICTION,
PrefKey.REMOTE_PLAY_ENABLED,
],
},
@@ -260,9 +261,9 @@ export function setupSettingsUi() {
if (setting.experimental) {
settingLabel = '🧪 ' + settingLabel;
if (!settingNote) {
settingNote = t('experimental')
settingNote = t('experimental');
} else {
settingNote = `${t('experimental')}: ${settingNote}`
settingNote = `${t('experimental')}: ${settingNote}`;
}
}