mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-10-30 22:07:57 +01:00 
			
		
		
		
	Minor cleanup
This commit is contained in:
		| @@ -105,7 +105,7 @@ class ReaderPresenter( | ||||
|  | ||||
|         val chaptersForReader = when { | ||||
|             (preferences.skipRead() || preferences.skipFiltered()) -> { | ||||
|                 val list = dbChapters.filterNot { | ||||
|                 val filteredChapters = dbChapters.filterNot { | ||||
|                     when { | ||||
|                         preferences.skipRead() && it.read -> true | ||||
|                         preferences.skipFiltered() -> { | ||||
| @@ -119,13 +119,12 @@ class ReaderPresenter( | ||||
|                         else -> false | ||||
|                     } | ||||
|                 } | ||||
|                     .toMutableList() | ||||
|  | ||||
|                 val find = list.find { it.id == chapterId } | ||||
|                 if (find == null) { | ||||
|                     list.add(selectedChapter) | ||||
|                 if (filteredChapters.any { it.id == chapterId }) { | ||||
|                     filteredChapters | ||||
|                 } else { | ||||
|                     filteredChapters + listOf(selectedChapter) | ||||
|                 } | ||||
|                 list | ||||
|             } | ||||
|             else -> dbChapters | ||||
|         } | ||||
|   | ||||
		Reference in New Issue
	
	Block a user