diff options
| author | 2018-08-13 20:17:46 +0100 | |
|---|---|---|
| committer | 2018-08-13 21:51:11 +0100 | |
| commit | 58a0a7e01422e62de1565a8eb0a1febdc463d04d (patch) | |
| tree | 8861789deefe9df3524690de8ccd11e5366f1f2e /src/modules/m_sqloper.cpp | |
| parent | Add an accessor for the last mode change list to ModeParser. (diff) | |
Implement IRCv3 message tag support.
Co-authored-by: Attila Molnar <attilamolnar@hush.com>
Diffstat (limited to 'src/modules/m_sqloper.cpp')
| -rw-r--r-- | src/modules/m_sqloper.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_sqloper.cpp b/src/modules/m_sqloper.cpp index 2b298f662..da538caef 100644 --- a/src/modules/m_sqloper.cpp +++ b/src/modules/m_sqloper.cpp @@ -143,7 +143,8 @@ class OperQuery : public SQL::Query return; // Now handle /OPER. - oper_command->Handle(user, params); + ClientProtocol::TagMap tags; + oper_command->Handle(user, CommandBase::Params(params, tags)); } else { |
