chg: [sshd] make it compatible with analyzer-json by default

master v0.2.1
Jean-Louis Huynen 2020-10-22 10:08:36 +02:00
parent 4bc6a0b635
commit c7372bc29a
No known key found for this signature in database
GPG Key ID: 64799157F4BD6B93
1 changed files with 2 additions and 2 deletions

View File

@ -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);
});
}
}