Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ final class DiscordTransport extends AbstractTransport
{
protected const HOST = 'discord.com';

private const SUBJECT_LIMIT = 2000;

private $token;
private $webhookId;

Expand Down Expand Up @@ -65,7 +67,7 @@ protected function doSend(MessageInterface $message): SentMessage

$content = $message->getSubject();

if (\strlen($content) > 2000) {
if (mb_strlen($content, 'UTF-8') > self::SUBJECT_LIMIT) {
throw new LogicException('The subject length of a Discord message must not exceed 2000 characters.');
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public function testSendChatMessageWithMoreThan2000CharsThrowsLogicException()
$this->expectException(LogicException::class);
$this->expectExceptionMessage('The subject length of a Discord message must not exceed 2000 characters.');

$transport->send(new ChatMessage(str_repeat('d', 2001)));
$transport->send(new ChatMessage(str_repeat('', 2001)));
}

public function testSendWithErrorResponseThrows()
Expand Down