mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-29 13:01:08 +00:00
Merge pull request #2447 from bookwyrm-social/fix-inventaire-import
Fixes error on importing from inventaire
This commit is contained in:
commit
ccb60f45c3
1 changed files with 2 additions and 2 deletions
|
@ -165,8 +165,8 @@ class Connector(AbstractConnector):
|
||||||
edition_data = self.get_book_data(edition_data)
|
edition_data = self.get_book_data(edition_data)
|
||||||
except ConnectorException:
|
except ConnectorException:
|
||||||
# who, indeed, knows
|
# who, indeed, knows
|
||||||
return
|
return None
|
||||||
super().create_edition_from_data(work, edition_data, instance=instance)
|
return super().create_edition_from_data(work, edition_data, instance=instance)
|
||||||
|
|
||||||
def get_cover_url(self, cover_blob, *_):
|
def get_cover_url(self, cover_blob, *_):
|
||||||
"""format the relative cover url into an absolute one:
|
"""format the relative cover url into an absolute one:
|
||||||
|
|
Loading…
Reference in a new issue