From eda17d1671bac85f7faae871ca6d4ce783ba85ba Mon Sep 17 00:00:00 2001 From: n1474335 Date: Tue, 13 Jun 2017 16:30:55 +0000 Subject: [PATCH] Added mixed content note to 'HTTP request' error message. --- src/core/operations/HTTP.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/core/operations/HTTP.js b/src/core/operations/HTTP.js index c02c3628..f12b151f 100755 --- a/src/core/operations/HTTP.js +++ b/src/core/operations/HTTP.js @@ -146,6 +146,7 @@ const HTTP = { return e.toString() + "\n\nThis error could be caused by one of the following:\n" + " - An invalid URL\n" + + " - Making a request to an insecure resource (HTTP) from a secure source (HTTPS)\n" + " - Making a cross-origin request to a server which does not support CORS\n"; }); },