Fix not being able to set more than one extban.

This commit is contained in:
Sadie Powell 2020-05-07 22:41:54 +01:00
parent 37fbbd840c
commit c7cbfa7f98
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ ModResult ExtBanManager::GetStatus(ExtBan::Acting* extban, User* user, Channel*
// The mask must be in the format <letter>:<value> or <name>:<value>.
size_t endpos = ban.mask.find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
if (endpos == std::string::npos || ban.mask[endpos] != ':')
return MOD_RES_PASSTHRU;
continue;
const std::string xbname(ban.mask, 0, endpos);
if (xbname.size() == 1)

View File

@ -78,7 +78,7 @@ class ModuleBanException
// The mask must be in the format <letter>:<value> or <name>:<value>.
size_t endpos = ban.mask.find_first_not_of("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz");
if (endpos == std::string::npos || ban.mask[endpos] != ':')
return MOD_RES_PASSTHRU;
continue;
const std::string name(ban.mask, 0, endpos);
if (name.size() == 1)