mirror of
				https://github.com/MinimalBible/MinimalBible
				synced 2025-11-03 18:10:27 -05:00 
			
		
		
		
	Fix the wrong books showing up in settings
This commit is contained in:
		@ -75,7 +75,7 @@ public class MinimalBibleModules {
 | 
				
			|||||||
                .filter(new Func1<Book, Boolean>() {
 | 
					                .filter(new Func1<Book, Boolean>() {
 | 
				
			||||||
                    @Override
 | 
					                    @Override
 | 
				
			||||||
                    public Boolean call(Book book) {
 | 
					                    public Boolean call(Book book) {
 | 
				
			||||||
                        return invalidBooks.contains(book.getInitials());
 | 
					                        return !invalidBooks.contains(book.getInitials());
 | 
				
			||||||
                    }
 | 
					                    }
 | 
				
			||||||
                })
 | 
					                })
 | 
				
			||||||
                .toList().toBlocking().first();
 | 
					                .toList().toBlocking().first();
 | 
				
			||||||
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user