getMessagePropStatus: Move back to isOutgoing for in/out check

Co-authored-by: Scott Nonnenberg <scott@signal.org>
This commit is contained in:
automated-signal 2022-06-01 12:55:12 -07:00 committed by GitHub
parent b44dafe804
commit 08360d150c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1371,7 +1371,7 @@ export function getMessagePropStatus(
>,
ourConversationId: string | undefined
): LastMessageStatus | undefined {
if (isIncoming(message)) {
if (!isOutgoing(message)) {
return hasErrors(message) ? 'error' : undefined;
}