mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-14 04:06:36 +00:00
Merge branch 'main' into production
This commit is contained in:
commit
88de4ff046
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ class AbstractConnector(ABC):
|
||||||
work.save()
|
work.save()
|
||||||
|
|
||||||
# now's our change to fill in author gaps
|
# now's our change to fill in author gaps
|
||||||
if not edition.authors and work.authors:
|
if not edition.authors.exists() and work.authors.exists():
|
||||||
edition.authors.set(work.authors.all())
|
edition.authors.set(work.authors.all())
|
||||||
edition.author_text = work.author_text
|
edition.author_text = work.author_text
|
||||||
edition.save()
|
edition.save()
|
||||||
|
|
Loading…
Reference in a new issue