diff --git a/packages/app/app/components/PlayQueue/index.js b/packages/app/app/components/PlayQueue/index.js index e899c876cd..b04bb9585d 100644 --- a/packages/app/app/components/PlayQueue/index.js +++ b/packages/app/app/components/PlayQueue/index.js @@ -107,12 +107,7 @@ class PlayQueue extends React.PureComponent { error={el.error} selectSong={actions.selectSong} removeFromQueue={actions.removeFromQueue} - duration={formatDuration( - getTrackDuration( - el, - plugins.selected.streamProviders - ) - )} + duration={formatDuration(getTrackDuration(el, plugins.selected.streamProviders)) === '00:00' && !el.loading ? this.props.t('live') : formatDuration(getTrackDuration(el, plugins.selected.streamProviders))} resetPlayer={this.props.items.length === 1 ? this.props.actions.resetPlayer : undefined} /> } diff --git a/packages/app/app/containers/PlayQueueContainer/__snapshots__/PlayQueueContainer.test.tsx.snap b/packages/app/app/containers/PlayQueueContainer/__snapshots__/PlayQueueContainer.test.tsx.snap index 02b9ac8fb1..e5a6ba6130 100644 --- a/packages/app/app/containers/PlayQueueContainer/__snapshots__/PlayQueueContainer.test.tsx.snap +++ b/packages/app/app/containers/PlayQueueContainer/__snapshots__/PlayQueueContainer.test.tsx.snap @@ -234,7 +234,7 @@ exports[`Play Queue container should display a context popup on right click 1`]