aboutsummaryrefslogtreecommitdiffstats
path: root/python/fatcat/routes.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/fatcat/routes.py')
-rw-r--r--python/fatcat/routes.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/python/fatcat/routes.py b/python/fatcat/routes.py
index 965040f5..801397e8 100644
--- a/python/fatcat/routes.py
+++ b/python/fatcat/routes.py
@@ -313,10 +313,6 @@ def search():
if word.startswith("10.") and word.count("/") >= 1:
query = query.replace(word, 'doi:"{}"'.format(word))
- # Convert "author:" query to "authors:"
- if query is not None:
- query = query.replace("author:", "authors:")
-
if 'q' in request.args.keys():
# always do files for HTML
found = do_search(query, limit=limit)