Fixed match of LBRY url in LBRYChannel extractor

This commit is contained in:
ruru 2020-06-09 14:00:15 +02:00
parent 1d916e6d08
commit 846aaf1cd1
No known key found for this signature in database
GPG Key ID: DB04553B2798C42C
1 changed files with 1 additions and 1 deletions

View File

@ -65,7 +65,7 @@ class LBRYIE(InfoExtractor):
class LBRYChannelIE(InfoExtractor):
IE_NAME = 'lbry:channel'
_VALID_URL = r'https?://(?:www\.)?lbry\.tv/@(?P<id>[^/?#&]+:[0-9a-f]+)'
_VALID_URL = r'https?://(?:www\.)?lbry\.tv/@(?P<id>[^/?#&]+:[0-9a-f]+)$'
_TESTS = [{
'url': 'https://lbry.tv/@TheLinuxGamer:f',
'info_dict': {