Fix custom notification creation.

This commit is contained in:
Greyson Parrelli
2019-09-25 18:35:17 -04:00
parent e273593343
commit ced48d0788
3 changed files with 36 additions and 11 deletions

View File

@@ -848,7 +848,7 @@ public class RecipientDatabase extends Database {
public @NonNull Recipient getCurrent() {
RecipientId id = RecipientId.from(cursor.getLong(cursor.getColumnIndexOrThrow(ID)));
return Recipient.live(id).get();
return Recipient.resolved(id);
}
public @Nullable Recipient getNext() {