Explorar o código

Notify user of error during a page download failure (#7047)

* Notify user of error during a page download failure

* Included the manga title in the error notification
saud-97 %!s(int64=3) %!d(string=hai) anos
pai
achega
5763201307

+ 1 - 0
app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt

@@ -401,6 +401,7 @@ class Downloader(
             .onErrorReturn {
                 page.progress = 0
                 page.status = Page.ERROR
+                notifier.onError(it.message, download.chapter.name, download.manga.title)
                 page
             }
     }