forked from mirrors/bookwyrm
Fixes error state when there are author duplicates
there shouldn't be, but it shouldn't crash a goodreads import either
This commit is contained in:
parent
ffeed6047e
commit
0a2d762d3b
1 changed files with 3 additions and 4 deletions
|
@ -177,10 +177,9 @@ class Connector(AbstractConnector):
|
||||||
''' load that author '''
|
''' load that author '''
|
||||||
if not re.match(r'^OL\d+A$', olkey):
|
if not re.match(r'^OL\d+A$', olkey):
|
||||||
raise ValueError('Invalid OpenLibrary author ID')
|
raise ValueError('Invalid OpenLibrary author ID')
|
||||||
try:
|
author = models.Author.objects.filter(openlibrary_key=olkey).first()
|
||||||
return models.Author.objects.get(openlibrary_key=olkey)
|
if author:
|
||||||
except models.Author.DoesNotExist:
|
return author
|
||||||
pass
|
|
||||||
|
|
||||||
url = '%s/authors/%s.json' % (self.base_url, olkey)
|
url = '%s/authors/%s.json' % (self.base_url, olkey)
|
||||||
data = get_data(url)
|
data = get_data(url)
|
||||||
|
|
Loading…
Reference in a new issue