Removed ! on instances of Search property of TTSWordFilter.
This commit is contained in:
@ -56,7 +56,7 @@ namespace TwitchChatTTS.Hermes.Socket.Handlers
|
||||
{
|
||||
try
|
||||
{
|
||||
var re = new Regex(filter.Search!, ((RegexOptions) filter.Flag) | RegexOptions.Compiled);
|
||||
var re = new Regex(filter.Search, ((RegexOptions) filter.Flag) | RegexOptions.Compiled);
|
||||
re.Match(string.Empty);
|
||||
filter.Regex = re;
|
||||
}
|
||||
|
Reference in New Issue
Block a user