diff --git a/client/components/Search/AuthorList/AuthorList.vue b/client/components/Search/AuthorList/AuthorList.vue
index 2b5e0f0..4ce55f2 100644
--- a/client/components/Search/AuthorList/AuthorList.vue
+++ b/client/components/Search/AuthorList/AuthorList.vue
@@ -189,7 +189,6 @@ class AuthorList extends BaseList {
list: Object,
search: Object,
genreMap: Object,
- liberamaReady: Boolean,
};
loadingMessage = '';
@@ -243,7 +242,7 @@ class AuthorList extends BaseList {
}
get showReadLink() {
- return this.config.bookReadLink != '' || this.liberamaReady;
+ return this.config.bookReadLink != '' || this.list.liberamaReady;
}
showHiddenHelp() {
@@ -356,7 +355,7 @@ class AuthorList extends BaseList {
поэтому повторная попытка должна быть успешной.`, 'Ошибка');
} else if (action == 'readBook') {
//читать
- if (this.liberamaReady) {
+ if (this.list.liberamaReady) {
this.sendMessage({type: 'submitUrl', data: href});
} else {
const url = this.config.bookReadLink.replace('${DOWNLOAD_LINK}', href);
diff --git a/client/components/Search/Search.vue b/client/components/Search/Search.vue
index bdfcdba..cb2acc0 100644
--- a/client/components/Search/Search.vue
+++ b/client/components/Search/Search.vue
@@ -111,7 +111,7 @@
-