3
0
mirror of https://github.com/ergochat/ergo.git synced 2024-11-10 22:19:31 +01:00

dline: Fix a bug where UNDLINE didn't remove them from datastore

This commit is contained in:
Daniel Oaks 2017-01-11 22:22:26 +10:00
parent e9324c3250
commit 4b5f4b6755

View File

@ -354,7 +354,7 @@ func unDLineHandler(server *Server, client *Client, msg ircmsg.IrcMessage) bool
return err
}
tx.Delete(hostString)
tx.Delete(dlineKey)
return nil
})