Skip to content

Commit f699010

Browse files
MartkCzJanTvrdik
MartkCz
authored andcommitted
MailPanel: attachmentId cast to int
1 parent 85d4d7f commit f699010

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/MailPanel.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ private function tryHandleRequest(): void
182182
$this->handleSource($messageId);
183183

184184
} elseif ($action === 'attachment' && is_string($messageId) && ctype_digit($attachmentId)) {
185-
$this->handleAttachment($messageId, $attachmentId);
185+
$this->handleAttachment($messageId, (int) $attachmentId);
186186

187187
} elseif ($action === 'delete-one' && is_string($messageId)) {
188188
$this->handleDeleteOne($messageId);

0 commit comments

Comments
 (0)