Skip to content

Commit

Permalink
Fix mail import gmail driver when message has been deleted (#9546)
Browse files Browse the repository at this point in the history
We forgot to ignore messages that were removed
  • Loading branch information
charlesBochet authored Jan 10, 2025
1 parent d117066 commit b46bc84
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,8 @@ export class GmailGetMessagesService {
response.error,
messageIds[index],
);

return undefined;
}

return parseAndFormatGmailMessage(
Expand Down

0 comments on commit b46bc84

Please sign in to comment.