remove obsolete error override

This commit is contained in:
Reto Brunner 2024-04-07 12:55:59 +02:00
parent 98452ccc18
commit e15b121080

View file

@ -167,7 +167,6 @@ export default <IrcEventHandler>function (irc, network) {
while ((match = nickRegExp.exec(data.message))) {
if (chan.findUser(match[1])) {
// @ts-expect-error Type 'string' is not assignable to type '{ mode: string; }'.ts(2345)
msg.users.push(match[1]);
}
}