diff options
-rw-r--r-- | extras/janus/manifest.yaml | 5 | ||||
-rw-r--r-- | web/share/js/index/main.js | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/extras/janus/manifest.yaml b/extras/janus/manifest.yaml new file mode 100644 index 00000000..c01c12df --- /dev/null +++ b/extras/janus/manifest.yaml @@ -0,0 +1,5 @@ +name: Janus +description: Janus WebRTC Gateway +path: janus +daemon: kvmd-janus +place: -1 diff --git a/web/share/js/index/main.js b/web/share/js/index/main.js index 5f715007..a019887e 100644 --- a/web/share/js/index/main.js +++ b/web/share/js/index/main.js @@ -80,7 +80,7 @@ function __loadKvmdInfo() { } for (let app of apps) { - if (app.enabled || app.started) { + if (app.place >= 0 && (app.enabled || app.started)) { $("apps").innerHTML += __makeApp(null, app.path, app.icon, app.name); } } |