We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20e2bed commit 1ffc921Copy full SHA for 1ffc921
packages/react-native-version-check/src/providers/playStore.js
@@ -34,7 +34,7 @@ class PlayStoreProvider implements IProvider {
34
return fetch(storeUrl, opt.fetchOptions)
35
.then(res => res.text())
36
.then(text => {
37
- const match = text.match(/Current Version.+?>([\d.-]+)<\/span>/);
+ const match = text.match(/\[\[\["([\d.]+?)"\]\]/);
38
if (match) {
39
const latestVersion = match[1].trim();
40
0 commit comments