add source name in download queue (#4338)

This commit is contained in:
Riztard Lanthorn
2021-01-23 22:15:30 +07:00
committed by GitHub
parent 00285a782c
commit 628bd5d6b4
2 changed files with 17 additions and 1 deletions

View File

@ -39,6 +39,9 @@ class DownloadHolder(private val view: View, val adapter: DownloadAdapter) :
// Update the manga title
binding.mangaFullTitle.text = download.manga.title
// Update the manga source
binding.mangaSource.text = download.source.name
// Update the progress bar and the number of downloaded pages
val pages = download.pages
if (pages == null) {