Final (?) regex fix

This commit is contained in:
Fabio Manganiello 2018-04-20 10:04:29 +02:00
parent eaec9ac51f
commit cc506b3340
1 changed files with 1 additions and 1 deletions

View File

@ -136,7 +136,7 @@ class VideoOmxplayerPlugin(Plugin):
results = []
for vid in soup.findAll(attrs={'class':'yt-uix-tile-link'}):
m = re.match('(/watch\?v=.+)&?', vid['href'])
m = re.match('(/watch\?v=[^&]+)', vid['href'])
if m:
results.append('https://www.youtube.com' + m.group(1))