Работа над opds

This commit is contained in:
Book Pauk
2022-11-22 20:09:00 +07:00
parent d0e79b0abb
commit 35925dbc6e
5 changed files with 216 additions and 14 deletions

View File

@@ -267,10 +267,16 @@ class WebWorker {
return result;
}
async getAuthorBookList(authorId) {
async opdsQuery(from, query) {
this.checkMyState();
return await this.dbSearcher.getAuthorBookList(authorId);
return await this.dbSearcher.opdsQuery(from, query);
}
async getAuthorBookList(authorId, author) {
this.checkMyState();
return await this.dbSearcher.getAuthorBookList(authorId, author);
}
async getSeriesBookList(series) {