Skip to content

Commit

Permalink
Support multi byte chars in test message
Browse files Browse the repository at this point in the history
Related #19
  • Loading branch information
m-ober committed Dec 15, 2023
1 parent 1eb8d19 commit 355aa12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion acp/discord_notifications_module.php
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ private function process_send_test_message()
$this->validate_post_request();

$webhook = $this->request->variable('dn_test_webhook', '', true);
$test_message = $this->request->variable('dn_test_message', '');
$test_message = $this->request->variable('dn_test_message', '', true);

// Check user inputs before attempting to send the message
if ($test_message == '')
Expand Down

0 comments on commit 355aa12

Please sign in to comment.