mirror of
https://github.com/f-droid/fdroidserver.git
synced 2025-10-06 09:21:07 +03:00
opencollecive: fix allowed characters
The url slug used by opencollective allows case variations, they all lead back to the canonical lowercase variant though. Apart from ascii characters and numbers only - and _ are allowed.
This commit is contained in:
parent
c6e68c11f8
commit
56ee7fe765
1 changed files with 1 additions and 1 deletions
|
@ -452,7 +452,7 @@ valuetypes = {
|
|||
['LiberapayID']),
|
||||
|
||||
FieldValidator("Open Collective",
|
||||
r'^[0-9a-z-]+$',
|
||||
r'^[0-9a-zA-Z_-]+$',
|
||||
['OpenCollective']),
|
||||
|
||||
FieldValidator("HTTP link",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue