mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-06-30 21:36:10 -04: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>() {
|
||||
@Override
|
||||
public Boolean call(Book book) {
|
||||
return invalidBooks.contains(book.getInitials());
|
||||
return !invalidBooks.contains(book.getInitials());
|
||||
}
|
||||
})
|
||||
.toList().toBlocking().first();
|
||||
|
Reference in New Issue
Block a user