We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f49ac7c commit 7d09808Copy full SHA for 7d09808
src/alert-on-update.tsx
@@ -40,7 +40,7 @@ async function checkForUpdate(localCommit: string) {
40
method: 'GET',
41
headers: { Pragma: 'no-cache' },
42
});
43
- const data = await res.json();
+ const data = await res.text();
44
45
if (data) {
46
const remoteDocument = new DOMParser().parseFromString(
0 commit comments