Переименования, поправки

This commit is contained in:
Book Pauk
2022-10-25 15:58:05 +07:00
parent dd5598a695
commit 03e5a87eb3
6 changed files with 153 additions and 153 deletions

View File

@@ -258,16 +258,16 @@ class WebWorker {
};
}
async getBookList(authorId) {
async getAuthorBookList(authorId) {
this.checkMyState();
return await this.dbSearcher.getBookList(authorId);
return await this.dbSearcher.getAuthorBookList(authorId);
}
async getSeriesBookList(seriesId) {
async getSeriesBookList(series, seriesId) {
this.checkMyState();
return await this.dbSearcher.getSeriesBookList(seriesId);
return await this.dbSearcher.getSeriesBookList(series, seriesId);
}
async getGenreTree() {