diff options
-rw-r--r-- | .local/share/libquvi-scripts/media/xvidstage.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.local/share/libquvi-scripts/media/xvidstage.lua b/.local/share/libquvi-scripts/media/xvidstage.lua index ac8de78..e2b1b51 100644 --- a/.local/share/libquvi-scripts/media/xvidstage.lua +++ b/.local/share/libquvi-scripts/media/xvidstage.lua @@ -85,6 +85,7 @@ function Xvidstage.can_parse_url(qargs) return t and t.scheme and t.scheme:lower():match('^http$') and t.host and t.host:lower():match('xvidstage%.com$') + and t.path and t.path:match("^/[a-z0-9]+") and true or false end |