This commit is contained in:
aozhiwei 2024-03-19 17:23:15 +08:00
parent dfc6b52498
commit a90c900453

View File

@ -97,6 +97,11 @@ func (this *matchMgr) execMatch(m *matchingInfo) {
return true return true
}) })
if m.matchOk != nil { if m.matchOk != nil {
this.onMatchOk(m)
} }
} }
func (this *matchMgr) onMatchOk(m *matchingInfo) {
f5.GetTimer().DeleteRunningTimer()
f5.GetTimer().Delete(m.matchOk.matchTimerWp)
}