1
0
Fork 0
forked from External/ergo

switch to redis pubsub for ipc

adjust commands to utilize channel names
add new config variables
fix mention race condition
This commit is contained in:
CEF Server 2024-08-27 14:49:05 +00:00
parent 64ebb1f480
commit f4c03b6765
12 changed files with 220 additions and 195 deletions

View file

@ -275,6 +275,6 @@ func (dm *DLineManager) loadFromDatastore() {
})
}
func (s *Server) loadDLines() {
s.dlines = NewDLineManager(s)
func (server *Server) loadDLines() {
server.dlines = NewDLineManager(server)
}