diff options
author | Elizabeth (Lizzy) Hunt <elizabeth.hunt@simponic.xyz> | 2023-10-11 18:39:46 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-11 18:39:46 -0600 |
commit | 9e5682ca437aaef112948d6f003c38eebcebbdd4 (patch) | |
tree | b93d52012a534d8a24e72decf26635ff49c1733c | |
parent | 9560ced6837d4c2e551df22f9f2c06d17b409855 (diff) | |
download | chessh-9e5682ca437aaef112948d6f003c38eebcebbdd4.tar.gz chessh-9e5682ca437aaef112948d6f003c38eebcebbdd4.zip |
space should be a safe character >:(
-rw-r--r-- | lib/chessh/ssh/client/trongle_chat.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/chessh/ssh/client/trongle_chat.ex b/lib/chessh/ssh/client/trongle_chat.ex index 4964965..3ea0d6d 100644 --- a/lib/chessh/ssh/client/trongle_chat.ex +++ b/lib/chessh/ssh/client/trongle_chat.ex @@ -96,7 +96,7 @@ defmodule Chessh.SSH.Client.TrongleChat do height: height } = state ) do - safe_char_regex = ~r/[A-Za-z0-9._~()'!*:@,;+?-]/ + safe_char_regex = ~r/[ A-Za-z0-9._~()'!*:@,;+?-]/ appended_message_state = case action do |