mirror of
				https://github.com/mihonapp/mihon.git
				synced 2025-11-04 08:08:55 +01:00 
			
		
		
		
	Minor cleanup
This commit is contained in:
		@@ -342,7 +342,7 @@ class LibraryController(
 | 
			
		||||
        searchItem.fixExpand(onExpand = { invalidateMenuOnExpand() })
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    fun search(query:String) {
 | 
			
		||||
    fun search(query: String) {
 | 
			
		||||
        this.query = query
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -64,8 +64,9 @@ class LibraryItem(val manga: LibraryManga, private val libraryAsList: Preference
 | 
			
		||||
            if (constraint.contains(",")) {
 | 
			
		||||
                val genres = manga.genre?.split(", ")
 | 
			
		||||
                constraint.split(",").all { containsGenre(it.trim(), genres) }
 | 
			
		||||
            } else {
 | 
			
		||||
                containsGenre(constraint, manga.genre?.split(", "))
 | 
			
		||||
            }
 | 
			
		||||
            else containsGenre(constraint, manga.genre?.split(", "))
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    private fun containsGenre(tag: String, genres: List<String>?): Boolean {
 | 
			
		||||
@@ -75,7 +76,8 @@ class LibraryItem(val manga: LibraryManga, private val libraryAsList: Preference
 | 
			
		||||
            } == null
 | 
			
		||||
        else
 | 
			
		||||
            genres?.find {
 | 
			
		||||
                it.trim().toLowerCase() == tag.toLowerCase() } != null
 | 
			
		||||
                it.trim().toLowerCase() == tag.toLowerCase()
 | 
			
		||||
            } != null
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    override fun equals(other: Any?): Boolean {
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user