Allow null for profileAvatar in RetrieveProfileAvatarJob.
This commit is contained in:
parent
34770a2333
commit
cfa13867e5
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ public class RetrieveProfileAvatarJob extends ContextJob implements InjectableTy
|
|||
|
||||
@Override
|
||||
protected void initialize(@NonNull SafeData data) {
|
||||
profileAvatar = data.getString(KEY_PROFILE_AVATAR);
|
||||
profileAvatar = data.getNullableString(KEY_PROFILE_AVATAR);
|
||||
recipient = Recipient.from(context, Address.fromSerialized(data.getString(KEY_ADDRESS)), true);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue