Skip to content

Commit

Permalink
fix: Prevent caching.
Browse files Browse the repository at this point in the history
  • Loading branch information
HavenDV committed Feb 19, 2024
1 parent 27d3d9c commit 83831c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public static async Task<IList<LookupResult>> LookupAsync(
: countryCode;

var response = await client.GetAsync(
new Uri($"https://itunes.apple.com/{countryCode}/lookup?bundleId={bundleIdentifier}"),
new Uri($"https://itunes.apple.com/{countryCode}/lookup?bundleId={bundleIdentifier}&cache={Guid.NewGuid()}"),
cancellationToken).ConfigureAwait(false);
var json = await response.Content.ReadAsStringAsync(
cancellationToken).ConfigureAwait(false);
Expand Down

0 comments on commit 83831c5

Please sign in to comment.