1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 23:46:37 +02:00

Fix parsing extbans on InspIRCd v4.

This commit is contained in:
Sadie Powell
2024-10-04 11:40:40 +01:00
parent 9b188a6c04
commit cbccc79d37
+1 -1
View File
@@ -1101,7 +1101,7 @@ struct IRCDMessageCapab final
if (a == Anope::string::npos)
return false;
auto b = token.find(':', a + 1);
auto b = token.find('=', a + 1);
if (b == Anope::string::npos)
return false;