1
mirror of https://code.videolan.org/videolan/vlc synced 2024-10-07 03:56:28 +02:00

anevia_streams.lua: partially tighten URL probe function

Ref. #17488
This commit is contained in:
Pierre Ynard 2016-11-02 02:19:50 +01:00
parent d88cf18893
commit 1dc89235f2

View File

@ -27,7 +27,7 @@
-- Probe function.
function probe()
return vlc.access == "http"
and string.match( vlc.path, "list_streams.idp" )
and string.match( vlc.path, "/list_streams%.idp" )
end
-- Parse function.