Add auth_relay to stream status request so that it works when AUTH_RELAY=PLAIN

pull/3680/head
Isaac Connor 2023-03-21 09:54:22 -04:00
parent a1c732abb8
commit e216b6b008
1 changed files with 1 additions and 1 deletions

View File

@ -33,7 +33,7 @@ function streamReq(data) {
data.view = 'request'; data.view = 'request';
data.request = 'stream'; data.request = 'stream';
$j.getJSON(monitorUrl, data) $j.getJSON(monitorUrl+'?'+auth_relay, data)
.done(getCmdResponse) .done(getCmdResponse)
.fail(logAjaxFail); .fail(logAjaxFail);
} }