feat: error in reader without auth
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
.tamperMonkey {
|
||||
display: none;
|
||||
}
|
||||
|
||||
@@ -72,13 +72,19 @@ export class ReaderComponent implements AfterViewInit, OnDestroy {
|
||||
this.searchService
|
||||
.getChapter(url, chapter, volume)
|
||||
.pipe(takeUntil(this.destroy$))
|
||||
.subscribe((data) => {
|
||||
.subscribe({
|
||||
next: (data) => {
|
||||
this.currentChapterInfo = data.data;
|
||||
this.pages = data.data.pages;
|
||||
if (this.fromTowards) {
|
||||
this.currentPageIndex = this.pages.length - 1;
|
||||
this.loadPage(this.pages.length - 1); // Загрузить последнюю страницу при открытии главы
|
||||
} else this.loadPage(0); // Загрузить первую страницу при открытии главы
|
||||
},
|
||||
error: (error) => {
|
||||
console.log(error);
|
||||
this.router.navigate(["/", "detail"], { queryParams: { url: this.url } });
|
||||
},
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user