commit 50828c71d5fd4e00de907557f27321054bc1887e parent 1330f872a92efd3e443de746479f46e92af5e9dd Author: Sergej Orlov <wladimirych@gmail.com> Date: Sat, 14 Apr 2018 01:48:49 +0300 send /event via https Diffstat:
M | src/lib/logging/index.js | | | 2 | +- |
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/lib/logging/index.js b/src/lib/logging/index.js @@ -35,7 +35,7 @@ function logEvent(eventName, extra) { } const s = JSON.stringify(data); const xhr = new XMLHttpRequest(); - xhr.open('POST', 'http://nakarte.tk/event'); + xhr.open('POST', 'https://nakarte.tk/event'); xhr.send(s); }