mirror of
https://github.com/lidarr/Lidarr
synced 2025-03-04 02:18:06 +00:00
7 lines
158 B
JavaScript
7 lines
158 B
JavaScript
var statusText = $.ajax({
|
|
type : "GET",
|
|
url : '/api/system/status',
|
|
async: false
|
|
}).responseText;
|
|
|
|
window.ServerStatus = JSON.parse(statusText);
|