diff --git a/CardCreator.html b/CardCreator.html
index cb1d8c3..6e7173a 100644
--- a/CardCreator.html
+++ b/CardCreator.html
@@ -713,7 +713,7 @@ generation methods.
diff --git a/create-card.js.html b/create-card.js.html
index b8eb454..a53b189 100644
--- a/create-card.js.html
+++ b/create-card.js.html
@@ -329,7 +329,7 @@ class CardCreator {
*/
async createCard(charaId, customImage) {
const characterInfoUrl = `https://xivapi.com/character/${charaId}?extended=1&data=FC,mimo`;
- const response = await fetch(characterInfoUrl);
+ let response = await fetch(characterInfoUrl);
if (!response.ok) {
// Retry once if the request fails
response = await fetch(characterInfoUrl);
@@ -691,7 +691,7 @@ exports.CardCreator = CardCreator;
diff --git a/index.html b/index.html
index 4d0eae8..cf4c8fb 100644
--- a/index.html
+++ b/index.html
@@ -118,7 +118,7 @@ example((err, response) => {