mirror of
https://github.com/MinimalBible/MinimalBible
synced 2025-07-15 12:44:42 -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>() {
|
.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