]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/modules/regex.h
Only check for a join time if a user is actually in the channel.
[user/henk/code/inspircd.git] / include / modules / regex.h
index 5a0ea49031037046c00436299dd9db22f21c2c60..2a915ae61dda1f0806e2edb35cdcb69e2a823f59 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * InspIRCd -- Internet Relay Chat Daemon
  *
- *   Copyright (C) 2013 Sadie Powell <sadie@witchery.services>
+ *   Copyright (C) 2013, 2021 Sadie Powell <sadie@witchery.services>
  *   Copyright (C) 2013 Attila Molnar <attilamolnar@hush.com>
  *   Copyright (C) 2012 Robby <robby@chatbelgie.be>
  *   Copyright (C) 2010 Craig Edwards <brain@inspircd.org>
@@ -59,9 +59,9 @@ class RegexFactory : public DataProvider
 class RegexException : public ModuleException
 {
  public:
-        RegexException(const std::string& regex, const std::string& error)
-                : ModuleException("Error in regex '" + regex + "': " + error) { }
+       RegexException(const std::string& regex, const std::string& error)
+               : ModuleException("Error in regex '" + regex + "': " + error) { }
 
-        RegexException(const std::string& regex, const std::string& error, int offset)
-                : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { }
+       RegexException(const std::string& regex, const std::string& error, int offset)
+               : ModuleException("Error in regex '" + regex + "' at offset " + ConvToStr(offset) + ": " + error) { }
 };