This commit is contained in:
meixiongfeng 2022-08-11 18:11:44 +08:00
parent 80a8fb20c5
commit da4f77d8e9

View File

@ -192,7 +192,9 @@ func (this *Configure) checkConfigure() {
return
}
for _, v := range handle.events {
v()
if v != nil {
v()
}
}
}
}