Skip to content

Commit

Permalink
Fix playlistRemovalsCache not working.
Browse files Browse the repository at this point in the history
  • Loading branch information
Komodo5197 committed Jun 11, 2024
1 parent 7589b31 commit ac1c7c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/components/PlayerScreen/queue_source_helper.dart
Original file line number Diff line number Diff line change
Expand Up @@ -147,5 +147,5 @@ bool queueItemInPlaylist(FinampQueueItem? queueItem) {
.contains(queueItem.source.type) &&
baseItem?.playlistItemId != null &&
!playlistRemovalsCache
.contains(queueItem.source.id + (baseItem?.id ?? ""));
.contains(queueItem.source.id + (baseItem?.playlistItemId ?? ""));
}

0 comments on commit ac1c7c0

Please sign in to comment.