mirror of https://github.com/searxng/searxng.git
oa_doi_rewrite: add the doi to the result when it is found.
Currentty, when oa_doi_rewrite find a DOI in the result URL, it replace the URL. In this commit, the plugin adds the key "doi" to the result, so the paper.html can show it.
This commit is contained in:
parent
5ba831d6a8
commit
593026ad9c
|
@ -42,4 +42,6 @@ def on_result(request, search, result):
|
||||||
doi = doi[: -len(suffix)]
|
doi = doi[: -len(suffix)]
|
||||||
result['url'] = get_doi_resolver(request.preferences) + doi
|
result['url'] = get_doi_resolver(request.preferences) + doi
|
||||||
result['parsed_url'] = urlparse(result['url'])
|
result['parsed_url'] = urlparse(result['url'])
|
||||||
|
if 'doi' not in result:
|
||||||
|
result['doi'] = doi
|
||||||
return True
|
return True
|
||||||
|
|
Loading…
Reference in New Issue