mirror of
https://github.com/MinimalBible/MinimalBible
synced 2024-11-05 07:38:20 -05:00
Fix the wrong books showing up in settings
This commit is contained in:
parent
1ce7cf8fee
commit
59a5112942
@ -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();
|
||||
|
Loading…
Reference in New Issue
Block a user