mirror of
https://github.com/SagerNet/sing.git
synced 2025-04-04 04:17:38 +03:00
fix lru cache expire
This commit is contained in:
parent
1d7d6515ce
commit
3c063b330d
1 changed files with 1 additions and 1 deletions
2
common/cache/lrucache.go
vendored
2
common/cache/lrucache.go
vendored
|
@ -232,7 +232,7 @@ func (c *LruCache[K, V]) get(key K) *entry[K, V] {
|
|||
return nil
|
||||
}
|
||||
|
||||
if !c.staleReturn && c.maxAge > 0 && le.Value.expires <= time.Now().Unix() {
|
||||
if !c.staleReturn && le.Value.expires > 0 && le.Value.expires <= time.Now().Unix() {
|
||||
c.deleteElement(le)
|
||||
c.maybeDeleteOldest()
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue