Skip to content

Commit

Permalink
remove useless escape
Browse files Browse the repository at this point in the history
  • Loading branch information
Justice Arthur committed Jul 18, 2022
1 parent 8ba4a0d commit 39eafc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/Environment/betaChecker/index.android.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ function isBetaBuild() {
fetch(CONST.PLAY_STORE_URL)
.then(res => res.text())
.then((text) => {
const productionVersionMatch = text.match(/\[\[\[\"\d+\.\d+\.\d+/);
const productionVersionMatch = text.match(/\[\[\["\d+\.\d+\.\d+/);
if (!productionVersionMatch) {
resolve(false);
}
Expand Down

0 comments on commit 39eafc8

Please sign in to comment.