فهرست منبع

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 2 سال پیش
والد
کامیت
5763201307
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      app/src/main/java/eu/kanade/tachiyomi/data/download/Downloader.kt

+ 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
             }
     }