Compare commits

...

2 Commits

Author SHA1 Message Date
世界
92d245ad04 Bump version 2025-02-05 09:59:52 +08:00
世界
0908627297 Fix crash on remote rule-set stop 2025-02-05 08:58:10 +08:00
4 changed files with 9 additions and 3 deletions

View File

@@ -2,6 +2,10 @@
icon: material/alert-decagram
---
### 1.11.1
* Fixes and improvements
### 1.11.0
Important changes since 1.10:

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
}