Skip to content

Commit

Permalink
Fix null given error in getMessageNumber() - closes #4257
Browse files Browse the repository at this point in the history
  • Loading branch information
freescout-help-desk committed Sep 27, 2024
1 parent 8cb8a18 commit b92e502
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -798,7 +798,7 @@ public function getMessageNumber(string $id): int {
}
}

throw new MessageNotFoundException('message number not found');
throw new MessageNotFoundException('message number not found: ' . $id);
}

/**
Expand Down

0 comments on commit b92e502

Please sign in to comment.