We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dadb02d commit c69a22fCopy full SHA for c69a22f
src/murfey/server/api/clem.py
@@ -163,7 +163,7 @@ def get_db_entry(
163
164
# Validate series name to use
165
if series_name is not None:
166
- if bool(re.fullmatch(r"^[\w\s\.\-]+$", series_name)) is False:
+ if bool(re.fullmatch(r"^[\w\s\.\-/]+$", series_name)) is False:
167
raise ValueError("One or more characters in the string are not permitted")
168
169
# Return database entry if it exists
0 commit comments