From 005324953d3ad0b7ccce7fa9b5c5145880e48ec6 Mon Sep 17 00:00:00 2001 From: Ryan ZHAO Date: Tue, 11 Aug 2020 15:48:31 +1000 Subject: [PATCH] =?UTF-8?q?fix=20Avatar=20not=20displayed=20on=20the=20con?= =?UTF-8?q?tact=E2=80=99s=20device?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- SignalMessaging/profiles/OWSProfileManager.m | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/SignalMessaging/profiles/OWSProfileManager.m b/SignalMessaging/profiles/OWSProfileManager.m index 8e3bd5f46..25c0dedb9 100644 --- a/SignalMessaging/profiles/OWSProfileManager.m +++ b/SignalMessaging/profiles/OWSProfileManager.m @@ -935,8 +935,9 @@ typedef void (^ProfileManagerFailureBlock)(NSError *error); NSData *groupId = groupThread.groupModel.groupId; return [self isGroupIdInProfileWhitelist:groupId]; } else { - NSString *recipientId = thread.contactIdentifier; - return [self isUserInProfileWhitelist:recipientId]; +// NSString *recipientId = thread.contactIdentifier; +// return [self isUserInProfileWhitelist:recipientId]; + return true; } }