diff --git a/ts/components/ConversationListItem.tsx b/ts/components/ConversationListItem.tsx index 8031916b2..cba97902f 100644 --- a/ts/components/ConversationListItem.tsx +++ b/ts/components/ConversationListItem.tsx @@ -257,6 +257,7 @@ const AvatarItem = (props: { ); }; +// tslint:disable: max-func-body-length const ConversationListItem = (props: Props) => { const { activeAt, diff --git a/ts/receiver/queuedJob.ts b/ts/receiver/queuedJob.ts index 17edc225b..cdf3cbd61 100644 --- a/ts/receiver/queuedJob.ts +++ b/ts/receiver/queuedJob.ts @@ -318,7 +318,7 @@ async function handleRegularMessage( } if (type === 'outgoing' && window.lokiFeatureFlags.useMessageRequests) { - handleSyncedReceipts(message, conversation); + await handleSyncedReceipts(message, conversation); // assumes sync receipts are always from linked device outgoings await conversation.setIsApproved(true);