Fix NPE when retrieving display name of unknown recipient.

fork-5.53.8
Alex Hart 2020-01-28 15:22:41 -04:00
rodzic 4ae7d56db4
commit f916aabb98
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -130,7 +130,7 @@ public class RecipientDetails {
this.blocked = false;
this.expireMessages = 0;
this.participants = new LinkedList<>();
this.profileName = null;
this.profileName = ProfileName.EMPTY;
this.insightsBannerTier = InsightsBannerTier.TIER_TWO;
this.defaultSubscriptionId = Optional.absent();
this.registered = RegisteredState.UNKNOWN;