Skip to content

Commit

Permalink
[C-3696] Fix lineups and recommendations (#7263)
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanjeffers authored Jan 22, 2024
1 parent bbad3fe commit fd8929e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/web/src/common/store/queue/sagas.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ function* handleQueueAutoplay({
const length = yield* select(getLength)
const shuffle = yield* select(getShuffle)
const repeatMode = yield* select(getRepeat)
const isCloseToEndOfQueue = index + 9 >= length
const isCloseToEndOfQueue = index + 2 >= length
const isNotRepeating =
repeatMode === RepeatMode.OFF ||
(repeatMode === RepeatMode.SINGLE && (skip || ignoreSkip))
Expand Down

0 comments on commit fd8929e

Please sign in to comment.