Prevent crash in megaphones after backup restore.

master
Greyson Parrelli 2020-02-04 14:01:47 -05:00
parent 28e2f22550
commit 7d949ee8fd
1 changed files with 1 additions and 0 deletions

View File

@ -63,6 +63,7 @@ public class MegaphoneRepository {
public void getNextMegaphone(@NonNull Callback<Megaphone> callback) {
executor.execute(() -> {
if (enabled) {
init();
callback.onResult(Megaphones.getNextMegaphone(context, databaseCache));
} else {
callback.onResult(null);