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 030a2be + 17f32aa commit 24cf41dCopy full SHA for 24cf41d
src/providers/android.js
@@ -24,11 +24,12 @@ export const getAndroidVersion = async (bundleId, country) => {
24
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
29
return {
30
version: version || null,
31
releasedAt: (new Date()).toISOString(),
- notes: "",
32
+ notes: notes || "",
33
url: `https://play.google.com/store/apps/details?id=${bundleId}&hl=${country}`,
34
lastChecked: (new Date()).toISOString()
35
};
0 commit comments