diff options
author | Sadie Powell <sadie@witchery.services> | 2025-05-09 12:36:42 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2025-05-09 12:36:42 +0100 |
commit | b76b407b33973bf1ac00a842b5b325fb8e378170 (patch) | |
tree | 7c909c4d68a6adb452f33999a4c16a014cc1c799 /modules/protocol/inspircd.cpp | |
parent | 8b089ab1a7c91f8de5a7eabf1ad493cbef96282f (diff) |
Move HTTP types to the HTTP namespace.
Diffstat (limited to 'modules/protocol/inspircd.cpp')
-rw-r--r-- | modules/protocol/inspircd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/protocol/inspircd.cpp b/modules/protocol/inspircd.cpp index 49b359857..9535778ae 100644 --- a/modules/protocol/inspircd.cpp +++ b/modules/protocol/inspircd.cpp @@ -91,7 +91,7 @@ namespace if (split == Anope::string::npos) res = modmap.emplace(datapair, ""); else - res = modmap.emplace(datapair.substr(0, split), HTTPUtils::URLDecode(datapair.substr(split + 1))); + res = modmap.emplace(datapair.substr(0, split), HTTP::URLDecode(datapair.substr(split + 1))); if (Anope::ProtocolDebug && res.second) Log(LOG_DEBUG) << "Parsed module data: key=" << res.first->first << " value=" << res.first->second; |