Fix redundant keys, MangaSearch

This commit is contained in:
2024-12-16 19:25:22 +01:00
parent 87274aca19
commit 3b58e0498b
16 changed files with 126 additions and 98 deletions

View File

@ -141,11 +141,11 @@ public class MangaKatana : MangaConnector
Manga manga = new (publicationId, sortName, description, websiteUrl, coverUrl, null, year,
originalLanguage, releaseStatus, -1, null, null,
this.Name,
authors.Select(a => a.AuthorId).ToArray(),
mangaTags.Select(t => t.Tag).ToArray(),
this,
authors,
mangaTags,
[],
altTitles.Select(a => a.AltTitleId).ToArray());
altTitles);
return (manga, authors, mangaTags, [], altTitles);
}