[bandcamp:album] Do not match plain Bandcamp URLs (#4461)

The _VALID_URL 1fa174692a is to broad, since it matches everything beginning with bandcamp.com.
This commit is contained in:
Philipp Hagemeister 2014-12-13 23:50:04 +01:00
parent 2128b696b8
commit 4d144be8b0
1 changed files with 1 additions and 1 deletions

View File

@ -106,7 +106,7 @@ class BandcampIE(InfoExtractor):
class BandcampAlbumIE(InfoExtractor):
IE_NAME = 'Bandcamp:album'
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<title>[^?#]+))?'
_VALID_URL = r'https?://(?:(?P<subdomain>[^.]+)\.)?bandcamp\.com(?:/album/(?P<title>[^?#]+)|/?(?:$|[?#]))'
_TESTS = [{
'url': 'http://blazo.bandcamp.com/album/jazz-format-mixtape-vol-1',