Skip to content

Commit

Permalink
Fix broken function reference
Browse files Browse the repository at this point in the history
  • Loading branch information
braders committed Jan 11, 2022
1 parent b878c8a commit 4520c86
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions CRM/Utils/Mail/Incoming.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public static function formatMailPart($part, &$attachments) {
return NULL;
}

return self::formatMailUnrecognisedPart($part);
return self::formatUnrecognisedPart($part);
}

/**
Expand Down Expand Up @@ -110,7 +110,7 @@ public static function formatMailMultipart($part, &$attachments) {
return self::formatMailDeliveryStatus($part);
}

return self::formatMailUnrecognisedPart($part);
return self::formatUnrecognisedPart($part);
}

/**
Expand Down

0 comments on commit 4520c86

Please sign in to comment.