~singpolyma/biboumi

34739728f930f461ae6763a5f144f709a9919e59 — Florent Le Coz 10 years ago aea923b
Fix a by-one error in the CHANTYPES parsing
1 files changed, 1 insertions(+), 1 deletions(-)

M src/irc/irc_client.cpp
M src/irc/irc_client.cpp => src/irc/irc_client.cpp +1 -1
@@ 285,7 285,7 @@ void IrcClient::on_isupport_message(const IrcMessage& message)
        // Remove the default types, they apply only if no other value is
        // specified.
        this->chantypes.clear();
        size_t i = 11;
        size_t i = 10;
        while (i < token.size())
          this->chantypes.insert(token[i++]);
      }