We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d4d7f commit f699010Copy full SHA for f699010
src/MailPanel.php
@@ -182,7 +182,7 @@ private function tryHandleRequest(): void
182
$this->handleSource($messageId);
183
184
} elseif ($action === 'attachment' && is_string($messageId) && ctype_digit($attachmentId)) {
185
- $this->handleAttachment($messageId, $attachmentId);
+ $this->handleAttachment($messageId, (int) $attachmentId);
186
187
} elseif ($action === 'delete-one' && is_string($messageId)) {
188
$this->handleDeleteOne($messageId);
0 commit comments