mirror of
https://github.com/MetaCubeX/Clash.Meta.git
synced 2025-04-05 14:13:30 +03:00
chore: modify initial resource update
This commit is contained in:
parent
5c1404f78e
commit
5858384631
1 changed files with 2 additions and 6 deletions
|
@ -13,10 +13,6 @@ import (
|
|||
"github.com/samber/lo"
|
||||
)
|
||||
|
||||
const (
|
||||
minInterval = time.Minute * 5
|
||||
)
|
||||
|
||||
var (
|
||||
fileMode os.FileMode = 0o666
|
||||
dirMode os.FileMode = 0o755
|
||||
|
@ -164,8 +160,8 @@ func (f *Fetcher[V]) Destroy() error {
|
|||
|
||||
func (f *Fetcher[V]) pullLoop() {
|
||||
initialInterval := f.interval - time.Since(f.UpdatedAt)
|
||||
if initialInterval < minInterval {
|
||||
initialInterval = minInterval
|
||||
if initialInterval > f.interval {
|
||||
initialInterval = f.interval
|
||||
}
|
||||
|
||||
timer := time.NewTimer(initialInterval)
|
||||
|
|
Loading…
Add table
Reference in a new issue