kopia lustrzana https://github.com/ryukoposting/Signal-Android
Handle null profile names better.
rodzic
73d18d3abd
commit
76dd09bc50
|
@ -374,7 +374,7 @@ public class RetrieveProfileJob extends BaseJob {
|
||||||
ProfileKey profileKey = ProfileKeyUtil.profileKeyOrNull(recipient.getProfileKey());
|
ProfileKey profileKey = ProfileKeyUtil.profileKeyOrNull(recipient.getProfileKey());
|
||||||
if (profileKey == null) return;
|
if (profileKey == null) return;
|
||||||
|
|
||||||
String plaintextProfileName = ProfileUtil.decryptName(profileKey, profileName);
|
String plaintextProfileName = Util.emptyIfNull(ProfileUtil.decryptName(profileKey, profileName));
|
||||||
|
|
||||||
if (!Objects.equals(plaintextProfileName, recipient.getProfileName().serialize())) {
|
if (!Objects.equals(plaintextProfileName, recipient.getProfileName().serialize())) {
|
||||||
String newProfileName = TextUtils.isEmpty(plaintextProfileName) ? ProfileName.EMPTY.serialize() : plaintextProfileName;
|
String newProfileName = TextUtils.isEmpty(plaintextProfileName) ? ProfileName.EMPTY.serialize() : plaintextProfileName;
|
||||||
|
|
Ładowanie…
Reference in New Issue