Load descriptions correctly

This commit is contained in:
Mouse Reeve
2021-04-29 10:54:36 -07:00
parent b1c38d291c
commit 7853610a20
2 changed files with 3 additions and 4 deletions

View File

@ -70,7 +70,7 @@ class Connector(AbstractConnector):
# flatten the data so that images, uri, and claims are on the same level
return {
**data.get("claims", {}),
**{k: data.get(k) for k in ["uri", "image", "labels"]},
**{k: data.get(k) for k in ["uri", "image", "labels", "sitelinks"]},
}
def parse_search_data(self, data):
@ -193,7 +193,7 @@ class Connector(AbstractConnector):
return results
def get_description(self, links):
"""grab an extracted except from wikipedia"""
"""grab an extracted excerpt from wikipedia"""
link = links.get("enwiki")
if not link:
return ""