diff --git a/grawlix/book.py b/grawlix/book.py index 1fe6da6..bc5e288 100644 --- a/grawlix/book.py +++ b/grawlix/book.py @@ -25,6 +25,7 @@ class Metadata: "identifier": self.identifier or "UNKNOWN", "language": self.language or "UNKNOWN", "authors": "; ".join(self.authors), + "author": self.authors[0] if self.authors else "UNKNOWN", "description": self.description or "UNKNOWN", "release_date": self.release_date.isoformat() if self.release_date else "UNKNOWN", }