mirror of
https://github.com/commercialhaskell/stackage-server.git
synced 2026-01-11 19:58:28 +01:00
Allow periods in slugs
This commit is contained in:
parent
5b9cb8ba14
commit
2878ef3aa6
@ -48,6 +48,7 @@ validChar c =
|
||||
('A' <= c && c <= 'Z') ||
|
||||
('a' <= c && c <= 'z') ||
|
||||
('0' <= c && c <= '9') ||
|
||||
c == '.' ||
|
||||
c == '-' ||
|
||||
c == '_'
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user