Skip to content

Commit

Permalink
Merge pull request #774 from Komodo5197/redesign-playlist-remove-cache
Browse files Browse the repository at this point in the history
[Redesign] Fix queue item playlist removal cache
  • Loading branch information
Chaphasilor authored Jun 12, 2024
2 parents 7589b31 + ac1c7c0 commit 3ae9fb7
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 3ae9fb7

Please sign in to comment.