From d1f15f5724dfe457622be5543e7712c5e26bbc02 Mon Sep 17 00:00:00 2001 From: Natsumi Date: Tue, 22 Jun 2021 07:05:29 +1200 Subject: [PATCH] Add US region tag --- html/src/app.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/html/src/app.js b/html/src/app.js index 5cd4dead..550d51f7 100644 --- a/html/src/app.js +++ b/html/src/app.js @@ -9962,12 +9962,12 @@ speechSynthesis.getVoices(); tags.push('~canRequestInvite'); } } - if (D.region !== 'USA') { - if (D.region === 'Europe') { - tags.push(`~region(eu)`); - } else if (D.region === 'Japan') { - tags.push(`~region(jp)`); - } + if (D.region === 'USA') { + tags.push(`~region(us)`); + } else if (D.region === 'Europe') { + tags.push(`~region(eu)`); + } else if (D.region === 'Japan') { + tags.push(`~region(jp)`); } if (D.accessType !== 'public') { tags.push(`~nonce(${uuidv4()})`);