We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4eee370 commit 01b56c9Copy full SHA for 01b56c9
src/api/apis/ComicVineAPI.ts
@@ -82,7 +82,7 @@ export class ComicVineAPI extends APIModel {
82
image: result.image?.original_url ?? '',
83
84
released: true,
85
- publishers: result.publisher.map((x: any) => x.name) ?? [],
+ publishers: result.publisher.name ?? [],
86
publishedFrom: result.start_year ?? 'unknown',
87
publishedTo: 'unknown',
88
status: result.status,
src/models/ComicBookModel.ts
@@ -62,6 +62,6 @@ export class ComicBookModel extends MediaTypeModel {
62
}
63
64
getSummary(): string {
65
- return this.englishTitle + ' (' + this.year + ') - ' + this.publisher;
+ return this.englishTitle + ' (' + this.year + ') - ' + this.publishers;
66
67
0 commit comments