diff --git a/app/soapbox/actions/soapbox.js b/app/soapbox/actions/soapbox.js index ca894a8dd..3faca2028 100644 --- a/app/soapbox/actions/soapbox.js +++ b/app/soapbox/actions/soapbox.js @@ -21,9 +21,12 @@ export function importSoapboxConfig(soapboxConfig) { } export function soapboxConfigFail(error) { + if (!error.response) { + console.error('soapbox.json parsing error: ' + error); + } return { type: SOAPBOX_CONFIG_REQUEST_FAIL, error, skipAlert: true, }; -}; +}