Skip to content

Commit

Permalink
fix unexpected json parse
Browse files Browse the repository at this point in the history
  • Loading branch information
xqdoo00o authored Sep 13, 2023
1 parent e7d31d7 commit 824df87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -6718,7 +6718,7 @@
if (chunk) {
let payload;
try {
payload = JSON.parse(chunk.slice(6));
payload = JSON.parse(chunk.slice(5));
} catch (e) {
break;
}
Expand Down
2 changes: 1 addition & 1 deletion sw.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const cacheName = "caches-v0.9.7";
const cacheName = "caches-v0.9.8";

self.addEventListener("install", (e) => {
e.waitUntil(
Expand Down

0 comments on commit 824df87

Please sign in to comment.