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.
2 parents 0b0ea5c + 80e16f2 commit 0709584Copy full SHA for 0709584
src/providers/android.js
@@ -25,10 +25,12 @@ export const getAndroidVersion = async (bundleId, country) => {
25
const text = await res.text();
26
const version = text.match(/\[\[\[['"]((\d+\.)+\d+)['"]\]\],/)[1];
27
const notes = text.match(/<div itemprop="description">(.*?)<\/div>/)?.[1];
28
+ const updateAt = text.match(/<div class="xg1aie">(.*?)<\/div>/)?.[1];
29
30
return {
31
version: version || null,
32
releasedAt: (new Date()).toISOString(),
33
+ updateAt: updateAt || "",
34
notes: notes || "",
35
url: `https://play.google.com/store/apps/details?id=${bundleId}&hl=${country}`,
36
lastChecked: (new Date()).toISOString()
0 commit comments