summaryrefslogtreecommitdiff
path: root/searx/engines/semantic_scholar.py
diff options
context:
space:
mode:
authorAlexandre Flament <alex@al-f.net>2022-09-23 19:58:14 +0200
committerAlexandre Flament <alex@al-f.net>2022-09-23 20:52:55 +0200
commitd6446be38f3f858c09887a89c8fc490a3c300b95 (patch)
tree1b911cba1b96970455b115d1cc706db52d5613da /searx/engines/semantic_scholar.py
parent08b88597052dfdf17e947289d79510fdadad51e3 (diff)
downloadsearxng-d6446be38f3f858c09887a89c8fc490a3c300b95.tar.gz
searxng-d6446be38f3f858c09887a89c8fc490a3c300b95.zip
[mod] science category: various update of about PR 1705
Diffstat (limited to 'searx/engines/semantic_scholar.py')
-rw-r--r--searx/engines/semantic_scholar.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/searx/engines/semantic_scholar.py b/searx/engines/semantic_scholar.py
index b2701c333..7a1b5b231 100644
--- a/searx/engines/semantic_scholar.py
+++ b/searx/engines/semantic_scholar.py
@@ -48,7 +48,6 @@ def request(query, params):
def response(resp):
res = loads(resp.text)
results = []
-
for result in res['results']:
url = result.get('primaryPaperLink', {}).get('url')
if not url and result.get('links'):
@@ -72,7 +71,7 @@ def response(resp):
# pick for the first alternate link, but not from the crawler
pdf_url = None
for doc in result.get('alternatePaperLinks', []):
- if doc['linkType'] != 'crawler':
+ if doc['linkType'] not in ('crawler', 'doi'):
pdf_url = doc['url']
break