From e6340433b1684f3f01f52605f77a6f96e513353e Mon Sep 17 00:00:00 2001 From: deflax Date: Mon, 11 Oct 2021 02:56:50 +0000 Subject: [PATCH] instruct zomstream to search for hls apps, as live is for incoming streams only --- frontend/app/zomstream.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/zomstream.py b/frontend/app/zomstream.py index 7e85224..26d004a 100644 --- a/frontend/app/zomstream.py +++ b/frontend/app/zomstream.py @@ -35,7 +35,7 @@ class Zomstream: applications = server.findall('application') for application in applications: appname = application.find('name') - if appname.text == "live" or appname.text == "rec": + if appname.text == "hls" or appname.text == "rec": streams = application.find('live').findall('stream') for stream in streams: name = stream.find('name')