Работа над opds

This commit is contained in:
Book Pauk
2022-11-23 14:38:23 +07:00
parent 8cf370c79d
commit a6d9df7dec
4 changed files with 43 additions and 26 deletions

View File

@@ -11,7 +11,7 @@ class RootPage extends BasePage {
this.authorPage = new AuthorPage(config);
}
async body() {
async body(req) {
const result = {};
if (!this.title) {
@@ -26,7 +26,7 @@ class RootPage extends BasePage {
this.authorPage.myEntry(),
];
return this.makeBody(result);
return this.makeBody(result, req);
}
}