Skip to content

Commit

Permalink
feat: Merge pull request #60 from JedrekDabrowski/patch-2
Browse files Browse the repository at this point in the history
  • Loading branch information
tschoffelen authored Sep 30, 2024
2 parents 05ad3ac + ac4300a commit 6e2ade0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/providers/ios.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export const getIosVersion = async (bundleId, country) => {
// Adds a random number to the end of the URL to prevent caching
const url = `https://itunes.apple.com/lookup?lang=en&bundleId=${bundleId}&country=${country}&_=${new Date().valueOf()}`;
const url = `https://itunes.apple.com/lookup?bundleId=${bundleId}&country=${country}&_=${new Date().valueOf()}`;

let res = await fetch(url);

Expand Down

0 comments on commit 6e2ade0

Please sign in to comment.