digitalpoint
Well-known member
- Affected version
- 2.1.2
Ran into an issue where if you get an error with the connected_accounts.php page, you would get an error in the browser saying the site can't be reached with ERR_INVALID_RESPONSE being the reason.
Turns it it was happening when you have Cloudflare (or anything really) setup to add the
Might not be a bad idea to assign a valid content type before the send() methods in connected_accounts.php
Turns it it was happening when you have Cloudflare (or anything really) setup to add the
X-Content-Type-Options: nosniff
header because "unknown/unknown" is not a valid content type for browsers.Might not be a bad idea to assign a valid content type before the send() methods in connected_accounts.php
->contentType('text/plain')