mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
[vimeo:group] Improve _VALID_URL (Closes #7552)
This commit is contained in:
parent
2c94198eb6
commit
fdb20a27a3
1 changed files with 1 additions and 1 deletions
|
@ -567,7 +567,7 @@ def _real_extract(self, url):
|
|||
|
||||
class VimeoGroupsIE(VimeoAlbumIE):
|
||||
IE_NAME = 'vimeo:group'
|
||||
_VALID_URL = r'https://vimeo\.com/groups/(?P<name>[^/]+)'
|
||||
_VALID_URL = r'https://vimeo\.com/groups/(?P<name>[^/]+)(?:/(?!videos?/\d+)|$)'
|
||||
_TESTS = [{
|
||||
'url': 'https://vimeo.com/groups/rolexawards',
|
||||
'info_dict': {
|
||||
|
|
Loading…
Reference in a new issue