We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bb4d547 commit 8728c55Copy full SHA for 8728c55
2 files changed
CHANGELOG.md
@@ -7,6 +7,7 @@
7
8
## Fixed
9
10
+- Fix mod updates not getting detected due to browser caching
11
- Throw failed to fetch error instead of digest mismatch error when mod download response has a status code >=400
12
13
## [1.1.0] 2025-08-17
src/cache.ts
@@ -21,6 +21,7 @@ async function getETag(url: string): Promise<string> {
21
const response = await fetch(url, {
22
method: 'HEAD',
23
mode: 'cors',
24
+ cache: 'no-store',
25
})
26
27
if (!response.ok) {
0 commit comments