Local profile default avatars should use steel background.

This commit is contained in:
Matthew Chen 2018-09-27 10:57:09 -04:00
parent 27488f078a
commit 6d14a1b472
2 changed files with 2 additions and 2 deletions

View file

@ -519,7 +519,7 @@ NS_ASSUME_NONNULL_BEGIN
+ (NSString *)ows_defaultConversationColorName
{
NSString *conversationColorName = @"teal";
NSString *conversationColorName = @"steel";
OWSAssert([self.ows_conversationColorNames containsObject:conversationColorName]);
return conversationColorName;
}

View file

@ -76,7 +76,7 @@ NS_ASSUME_NONNULL_BEGIN
OWSAssertDebug(localNumber.length > 0);
OWSAssertDebug(diameter > 0);
NSString *colorName = [TSThread stableConversationColorNameForString:localNumber];
NSString *colorName = [UIColor ows_defaultConversationColorName];
return [self initWithSignalId:localNumber colorName:colorName diameter:diameter];
}