1
0
mirror of https://github.com/l1ving/youtube-dl synced 2026-05-19 18:19:55 +08:00

Fixed match of LBRY url in LBRYChannel extractor

This commit is contained in:
ruru
2020-06-09 14:00:15 +02:00
Unverified
parent 1d916e6d08
commit 846aaf1cd1
+1 -1
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': {