Fixed an index out of bounds crash when ending a message with a mention

pull/1061/head
Morgan Pretty 1 week ago
parent bc654d5b96
commit 4ac489e9a8

@ -115,7 +115,12 @@ public enum MentionUtilities {
result.addAttribute(.currentUserMentionBackgroundCornerRadius, value: (8 * sizeDiff), range: mention.range)
result.addAttribute(.currentUserMentionBackgroundPadding, value: (3 * sizeDiff), range: mention.range)
result.addAttribute(.currentUserMentionBackgroundColor, value: primaryColor.color, range: mention.range)
result.addAttribute(.kern, value: (3 * sizeDiff), range: NSRange(location: mention.range.upperBound, length: 1))
// Only add the additional kern if the mention isn't at the end of the string (otherwise this
// would crash due to an index out of bounds exception)
if mention.range.upperBound < result.length {
result.addAttribute(.kern, value: (3 * sizeDiff), range: NSRange(location: mention.range.upperBound, length: 1))
}
}
switch (location, mention.isCurrentUser, theme.interfaceStyle) {

Loading…
Cancel
Save