From c8466afac22265593eb2683fc68cf00f12b322f5 Mon Sep 17 00:00:00 2001 From: Thomas Zarebczan Date: Mon, 16 Nov 2020 14:09:04 -0500 Subject: [PATCH] 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. --- lbry/schema/url.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lbry/schema/url.py b/lbry/schema/url.py index c869d2fc7..0231945dc 100644 --- a/lbry/schema/url.py +++ b/lbry/schema/url.py @@ -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):