Allow spaces when adding new pattern

This commit is contained in:
Chris Tyrrel
2022-01-23 10:11:25 -07:00
committed by GitHub
parent 81df4dec56
commit 34aece328e

View File

@@ -632,7 +632,7 @@ class CWatcherMod : public CModule {
CString sHostMask = sLine.Token(1);
CString sTarget = sLine.Token(2);
CString sPattern = sLine.Token(3);
CString sPattern = sLine.Token(3, true);
CString sMessage;