mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-29 16:43:14 -05:00
Fix reappearing indicator in the History tab (#6105)
This commit is contained in:
parent
55a3094a65
commit
2a1bb3dc27
1 changed files with 1 additions and 1 deletions
|
@ -105,7 +105,7 @@ class HistoryController :
|
||||||
* @param mangaHistory list of manga history
|
* @param mangaHistory list of manga history
|
||||||
*/
|
*/
|
||||||
fun onNextManga(mangaHistory: List<HistoryItem>, cleanBatch: Boolean = false) {
|
fun onNextManga(mangaHistory: List<HistoryItem>, cleanBatch: Boolean = false) {
|
||||||
if (adapter?.itemCount ?: 0 == 0 || cleanBatch) {
|
if (adapter?.itemCount ?: 0 == 0) {
|
||||||
resetProgressItem()
|
resetProgressItem()
|
||||||
}
|
}
|
||||||
if (cleanBatch) {
|
if (cleanBatch) {
|
||||||
|
|
Loading…
Reference in a new issue