Skip to content

Commit

Permalink
Fix cache fulfillment error
Browse files Browse the repository at this point in the history
  • Loading branch information
George Stone authored and George Stone committed Sep 10, 2024
1 parent 1b902bd commit 48097a7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ function fetchFeed(url) {
}))
} else {
const data = localStorage.getItem(url);
text = JSON.parse(data).data;
responseText = JSON.parse(data).data;
}
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(responseText, "application/xml");
Expand Down

0 comments on commit 48097a7

Please sign in to comment.