instruct zomstream to search for hls apps, as live is for incoming streams only

This commit is contained in:
deflax 2021-10-11 02:56:50 +00:00
parent 3382e6f33c
commit e6340433b1

View file

@ -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')