Browse Source

Added mixed content note to 'HTTP request' error message.

n1474335 8 năm trước cách đây
mục cha
commit
eda17d1671
1 tập tin đã thay đổi với 1 bổ sung0 xóa
  1. 1 0
      src/core/operations/HTTP.js

+ 1 - 0
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";
         });
     },