mirror of
https://github.com/inspircd/inspircd.git
synced 2025-04-03 06:40:04 -04:00
Fix not being able to set more than one extban.
This commit is contained in:
parent
37fbbd840c
commit
c7cbfa7f98
@ -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)
|
||||
|
@ -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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user