mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
Fix commands overflowing the message size in /STATS Oo
.
This commit is contained in:
parent
333e28b2e3
commit
e5d1eebc92
@ -139,7 +139,7 @@ public:
|
||||
const std::string chanmodes = account->GetModes(MODETYPE_CHANNEL);
|
||||
const std::string usermodes = account->GetModes(MODETYPE_USER);
|
||||
const std::string snomasks = account->GetSnomasks();
|
||||
const std::string commands = account->GetCommands();
|
||||
const std::string commands = account->GetCommands(true);
|
||||
const std::string privileges = account->GetPrivileges();
|
||||
|
||||
stats.AddGenericRow(INSP_FORMAT(
|
||||
@ -168,7 +168,7 @@ public:
|
||||
const std::string chanmodes = type->GetModes(MODETYPE_CHANNEL);
|
||||
const std::string usermodes = type->GetModes(MODETYPE_USER);
|
||||
const std::string snomasks = type->GetSnomasks();
|
||||
const std::string commands = type->GetCommands();
|
||||
const std::string commands = type->GetCommands(true);
|
||||
const std::string privileges = type->GetPrivileges();
|
||||
|
||||
stats.AddGenericRow(INSP_FORMAT(
|
||||
|
Loading…
x
Reference in New Issue
Block a user