Skip to content

Commit

Permalink
Fix error message when can not fetch specific email vai MailHelper::f…
Browse files Browse the repository at this point in the history
…etchMessage() - closes #4097
  • Loading branch information
freescout-help-desk committed Jul 3, 2024
1 parent 16843c9 commit 5ef26ea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Misc/Mail.php
Original file line number Diff line number Diff line change
Expand Up @@ -783,7 +783,7 @@ public static function fetchMessage($mailbox, $message_id, $message_date = null)
$client = \MailHelper::getMailboxClient($mailbox);
$client->connect();
} catch (\Exception $e) {
\Helper::logException($e, '('.$mailbox->name.') Could not fetch specific message by Message-ID via IMAP:');
\Helper::logException($e, '('.$mailbox->name.') Could not fetch specific message by Message-ID:');
return null;
}

Expand Down

0 comments on commit 5ef26ea

Please sign in to comment.