US East flag

This commit is contained in:
Natsumi
2021-12-01 11:13:53 +13:00
parent 0cf269750f
commit 3ab5e6a4f9
7 changed files with 44 additions and 7 deletions

View File

@@ -871,8 +871,10 @@ speechSynthesis.getVoices();
this.region = 'europeanunion';
} else if (L.region === 'jp') {
this.region = 'jp';
} else if (L.region === 'use') {
this.region = 'flag-icon-use';
} else {
this.region = 'us';
this.region = 'flag-icon-usw';
}
}
},
@@ -13983,8 +13985,10 @@ speechSynthesis.getVoices();
tags.push('~canRequestInvite');
}
}
if (D.region === 'USA') {
if (D.region === 'US West') {
tags.push(`~region(us)`);
} else if (D.region === 'US East') {
tags.push(`~region(use)`);
} else if (D.region === 'Europe') {
tags.push(`~region(eu)`);
} else if (D.region === 'Japan') {
@@ -14067,7 +14071,7 @@ speechSynthesis.getVoices();
'instanceDialogAccessType'
);
}
D.region = 'USA';
D.region = 'US West';
if (configRepository.getString('instanceRegion') !== null) {
D.region = configRepository.getString('instanceRegion');
}