More logging in addDeliveryIssue, properly wait in getProfiles

This commit is contained in:
Scott Nonnenberg
2021-07-26 17:00:16 -07:00
committed by GitHub
parent 276c153ec4
commit 67d13e9ba8
3 changed files with 9 additions and 5 deletions

View File

@@ -944,7 +944,7 @@ export async function startApp(): Promise<void> {
`retryPlaceholders/interval: Found ${expired.length} expired items`
);
expired.forEach(item => {
const { conversationId, senderUuid } = item;
const { conversationId, senderUuid, sentAt } = item;
const conversation = window.ConversationController.get(
conversationId
);
@@ -956,6 +956,7 @@ export async function startApp(): Promise<void> {
receivedAt,
receivedAtCounter,
senderUuid,
sentAt,
})
);
}