Fix crash on remote rule-set stop

This commit is contained in:
世界 2025-02-05 08:58:10 +08:00
parent 7f79458b4f
commit 0908627297
No known key found for this signature in database
GPG key ID: CD109927C34A63C4

View file

@ -301,8 +301,10 @@ func (s *RemoteRuleSet) fetchOnce(ctx context.Context, startContext *adapter.HTT
func (s *RemoteRuleSet) Close() error {
s.rules = nil
s.updateTicker.Stop()
s.cancel()
if s.updateTicker != nil {
s.updateTicker.Stop()
}
return nil
}