From c7372bc29af7122c18027ce175f53e76a98e6363 Mon Sep 17 00:00:00 2001 From: Jean-Louis Huynen Date: Thu, 22 Oct 2020 10:08:36 +0200 Subject: [PATCH] chg: [sshd] make it compatible with analyzer-json by default --- logcompiler/sshd/load.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/logcompiler/sshd/load.js b/logcompiler/sshd/load.js index 022e010..d0d9a44 100644 --- a/logcompiler/sshd/load.js +++ b/logcompiler/sshd/load.js @@ -5,7 +5,7 @@ function imgLoad(image) { return new Promise(function (resolve, reject) { // Standard XHR to load an image var request = new XMLHttpRequest(); - var url = 'http://127.0.0.1:4444/data/sshd/'+image+'.svg' + var url = 'http://127.0.0.1:1323/data/sshd/'+image+'.svg' request.open('GET', url); request.responseType = 'blob'; @@ -52,4 +52,4 @@ function loadImage(date, type) { }, function (Error) { console.log(Error); }); -} \ No newline at end of file +}