Skip to content

Commit

Permalink
In MessageDeliveryStatus.ParseStatusGroups(), catch FormatException i…
Browse files Browse the repository at this point in the history
…nstead of ParseException

Fixes issue #837
  • Loading branch information
jstedfast committed Sep 14, 2022
1 parent 14245f1 commit 7827d38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MimeKit/MessageDeliveryStatus.cs
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ void ParseStatusGroups ()
}
}
}
} catch (ParseException) {
} catch (FormatException) {
}
}

Expand Down

0 comments on commit 7827d38

Please sign in to comment.