@sdetweil I’m looking at the node_helper.js file and reading your comments and I’m a little unsure what you are suggesting.
Are you saying I could edit this code block:
.catch((error) => {
this.sendSocketNotification("MEALIE_ERROR", {
error: "FETCH_ERROR",
details: error,
identifier: config.identifier
});
})
to this:
.catch((error) => {
this.outstandingRequest = false;
this.sendSocketNotification("MEALIE_ERROR", {
error: "FETCH_ERROR",
details: error,
identifier: config.identifier
});
})
?
Sorry, I can fumble my way around code but I’m far from a programmer!