Skip to content
This repository was archived by the owner on Sep 29, 2020. It is now read-only.

Commit 45deed1

Browse files
SlidyBatHeadline
authored andcommitted
Fix unescape regex (#30)
Spaces can't be escaped in discord
1 parent f3e1104 commit 45deed1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

IRC-Relay/Discord.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ public static string Unescape(string input)
335335
return ""; // doesn't matter what we replace with
336336
});
337337

338-
string retstr = Regex.Replace(input, @"\\([^A-Za-z0-9])", "$1");
338+
string retstr = Regex.Replace(input, @"\\([^A-Za-z0-9 ])", "$1");
339339

340340
// From here we prep the return string by doing our regex on the input that's not in '`'
341341
reg = new Regex("__NEVER_BE_SENT_PLEASE_([0-9]+)_!@#%");

0 commit comments

Comments
 (0)