From 63d560ad9f413b4dfd5d99e03031ed2c05b4dc7a Mon Sep 17 00:00:00 2001 From: Toni Gundogdu Date: Tue, 4 Jun 2013 15:03:01 +0300 Subject: [PATCH] FIX: media/break.lua: Break.can_parse_url: path pattern Signed-off-by: Toni Gundogdu --- share/media/break.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/media/break.lua b/share/media/break.lua index 6422913..116085a 100644 --- a/share/media/break.lua +++ b/share/media/break.lua @@ -56,7 +56,7 @@ function Break.can_parse_url(qargs) local t = U.parse(qargs.input_url) if t and t.scheme and t.scheme:lower():match('^http$') and t.host and t.host:lower():match('break%.com$') - and t.path and t.path:lower():match('^/index/') + and t.path and t.path:lower():match('^/video/.-%-%d+$') then return true else -- 2.11.4.GIT