浏览代码

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 3 年之前
父节点
当前提交
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
             }
     }