diff options
author | Devaev Maxim <[email protected]> | 2020-07-09 09:41:05 +0300 |
---|---|---|
committer | Devaev Maxim <[email protected]> | 2020-07-09 09:41:05 +0300 |
commit | 5f1733d0024c70ccaf31964980a6286a7951cbed (patch) | |
tree | b9074dc235835a214b66be2405faa777245a2e3f /web/share/js/index | |
parent | 53eb74670d040c9e8745433a2641f18796da365c (diff) |
complex info handle
Diffstat (limited to 'web/share/js/index')
-rw-r--r-- | web/share/js/index/main.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 6c315660..24a694b8 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -51,7 +51,7 @@ function __setAppText() { } function __loadKvmdInfo() { - let http = tools.makeRequest("GET", "/api/info", function() { + let http = tools.makeRequest("GET", "/api/info?fields=meta,extras", function() { if (http.readyState === 4) { if (http.status === 200) { let info = JSON.parse(http.responseText).result; |