forked from LBRYCommunity/lbry-sdk
Remove * from invalid characters
This is already part of other URLs and channels, will be removed from spec as it won't be used for sequencing.
This commit is contained in:
parent
2619e162c1
commit
c8466afac2
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ from typing import NamedTuple, Tuple
|
|||
def _create_url_regex():
|
||||
# see https://spec.lbry.com/ and test_url.py
|
||||
invalid_names_regex = \
|
||||
r"[^=&#:$@%*?;\"/\\<>%{}|^~`\[\]" \
|
||||
r"[^=&#:$@%?;\"/\\<>%{}|^~`\[\]" \
|
||||
r"\u0000-\u0020\uD800-\uDFFF\uFFFE-\uFFFF]+"
|
||||
|
||||
def _named(name, regex):
|
||||
|
|
Loading…
Add table
Reference in a new issue