Commit 54a5f89e authored by Stephen Parry's avatar Stephen Parry Committed by Jean-Baptiste Kempf

httprequests: output DVD title# and chapter# in status

Amended httprequests lua code to output current DVD title# and chapter#
in status.

Close #8250
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent f7881537
......@@ -530,6 +530,9 @@ local aout = vlc.object.aout()
s.stats[tag]=v
end
s.information.chapter=vlc.var.get(input, "chapter")
s.information.title=vlc.var.get(input, "title")
s.information.chapters=vlc.var.get_list(input, "chapter")
s.information.titles=vlc.var.get_list(input, "title")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment