mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
Fix: use correctly last record
This commit is contained in:
parent
1a8a6d0b5d
commit
904c354ee4
@ -114,11 +114,11 @@ func (p *Proxy) LastDelay() (delay uint16) {
|
||||
return max
|
||||
}
|
||||
|
||||
head := p.history.First()
|
||||
if head == nil {
|
||||
last := p.history.Last()
|
||||
if last == nil {
|
||||
return max
|
||||
}
|
||||
history := head.(C.DelayHistory)
|
||||
history := last.(C.DelayHistory)
|
||||
if history.Delay == 0 {
|
||||
return max
|
||||
}
|
||||
|
@ -34,16 +34,16 @@ func (q *Queue) Pop() interface{} {
|
||||
return head
|
||||
}
|
||||
|
||||
// First returns the head of items without deleting.
|
||||
func (q *Queue) First() interface{} {
|
||||
// Last returns the last of item.
|
||||
func (q *Queue) Last() interface{} {
|
||||
if len(q.items) == 0 {
|
||||
return nil
|
||||
}
|
||||
|
||||
q.lock.RLock()
|
||||
head := q.items[0]
|
||||
last := q.items[len(q.items)-1]
|
||||
q.lock.RUnlock()
|
||||
return head
|
||||
return last
|
||||
}
|
||||
|
||||
// Copy get the copy of queue.
|
||||
|
Loading…
Reference in New Issue
Block a user