Skip to content
Snippets Groups Projects
Commit 03964245 authored by git-directory-deploy's avatar git-directory-deploy
Browse files

publish: Merge branch 'dev' into 'master'

generated from commit 6a7f575f
parent 9e14fce3
No related branches found
No related tags found
No related merge requests found
......@@ -314,8 +314,9 @@ async function checkConsentForLoadCurve(
log('info', 'No consent for load curve')
return false
} else if (
(err.statusCode === 404 || err.code === 404) &&
err.error === "no_data_found") {
(err.statusCode === 404 &&
err.error === "no_data_found") || (err.code === 404 &&
err.error === "no_data_found")) {
log('info', 'Handling half-hour error on connection')
return false
} else {
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment