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 b023170 commit a70a3f8Copy full SHA for a70a3f8
1 file changed
python/philologic/runtime/WSGIHandler.py
@@ -96,7 +96,7 @@ def __init__(self, environ, config):
96
if db.locals["metadata_sql_types"][field] not in ("int", "date") and isinstance(
97
self.cgi[field][0], str
98
):
99
- if not self.cgi[field][0].startswith('"'):
+ if not self.cgi[field][0].startswith('"') and field != "filename":
100
self.cgi[field][0] = query_parse(self.cgi[field][0], config)
101
# these ifs are to fix the no results you get when you do a
102
# metadata query
0 commit comments