Fix bug where wallpaper didn't update after changing.

This commit is contained in:
Greyson Parrelli
2022-03-16 17:36:17 -04:00
committed by Cody Henthorne
parent 0359f27cd9
commit 604f6709db
3 changed files with 20 additions and 3 deletions

View File

@@ -270,7 +270,7 @@ public class DatabaseObserver {
}
public void notifyRecipientChanged(@NonNull RecipientId recipientId) {
runPostSuccessfulTransaction(KEY_RECIPIENT + recipientId.serialize(), () -> {
SignalDatabase.runPostSuccessfulTransaction(KEY_RECIPIENT + recipientId.serialize(), () -> {
Recipient.live(recipientId).refresh();
});
}