zyvv
Results
4
comments of
zyvv
i got the same problem
when it comes to one item in queue, hasPrevious is wrong
``` var hasPreviousItem: Bool { if !queue.isEmpty && (nextPosition - 1 > 0 || mode.contains(.repeat) || mode.contains(.repeatAll)) { return true } return false } ``` maybe should this.