We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b773045 commit 46c33ebCopy full SHA for 46c33eb
packages/web/src/common/store/pages/collection/lineups/sagas.js
@@ -38,7 +38,7 @@ function* getCollectionTracks() {
38
39
const trackIds = tracks.map((t) => t.track)
40
// TODO: Conform all timestamps to be of the same format so we don't have to do any special work here.
41
- const times = tracks.map((t) => t.metadata_time ?? t.time)
+ const times = tracks.map((t) => t.metadata_time || t.time)
42
43
// Reconcile fetching this playlist with the queue.
44
// Search the queue for its currently playing uids. If any are sourced
0 commit comments