소스 검색

Fix unread badges not hiding in list view

arkon 4 년 전
부모
커밋
2fb0969c75
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryListHolder.kt

+ 2 - 2
app/src/main/java/eu/kanade/tachiyomi/ui/library/LibraryListHolder.kt

@@ -44,8 +44,8 @@ class LibraryListHolder(
 
         // Update the unread count and its visibility.
         with(unread_text) {
-            visibleIf { item.manga.unread > 0 }
-            text = item.manga.unread.toString()
+            visibleIf { item.unreadCount > 0 }
+            text = item.unreadCount.toString()
         }
         // Update the download count and its visibility.
         with(download_text) {