diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-03 19:35:07 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2019-09-03 19:35:07 -0700 |
commit | 56e30786ccf326ff69deee9a0dcf86b032d3b1ae (patch) | |
tree | 569f5f6325402824e4c2cc89b24c6d9159ecacce /python/fatcat_web/routes.py | |
parent | 37aadd7097f1405f05448bd601461786bdc342d4 (diff) | |
download | fatcat-56e30786ccf326ff69deee9a0dcf86b032d3b1ae.tar.gz fatcat-56e30786ccf326ff69deee9a0dcf86b032d3b1ae.zip |
do release search by container_id, not issnl
Diffstat (limited to 'python/fatcat_web/routes.py')
-rw-r--r-- | python/fatcat_web/routes.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py index 5789dc48..f313fce0 100644 --- a/python/fatcat_web/routes.py +++ b/python/fatcat_web/routes.py @@ -632,6 +632,10 @@ def release_search(): if issnl and query: query += ' container_issnl:"{}"'.format(issnl) + container_id = request.args.get('container_id') + if container_id and query: + query += ' container_id:"{}"'.format(container_id) + if 'q' in request.args.keys(): # always do files for HTML found = do_release_search(query, fulltext_only=fulltext_only) |