Skip to content

Commit

Permalink
feat: remove feed_instance_id
Browse files Browse the repository at this point in the history
  • Loading branch information
CarinaDraganJW committed May 4, 2023
1 parent 089c291 commit 1b2223b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Player/Player.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ const Player: React.FC<Props> = ({
}

// Load new item
playerRef.current.load([deepCopy({ ...item, starttime: startTimeRef.current, feedid: feedId, feed_instance_id: feedId })]);
playerRef.current.load([deepCopy({ ...item, starttime: startTimeRef.current, feedid: feedId })]);
};

const initializePlayer = () => {
Expand All @@ -174,7 +174,7 @@ const Player: React.FC<Props> = ({
mute: false,
playbackRateControls: true,
pipIcon: 'disabled',
playlist: [deepCopy({ ...item, starttime: startTimeRef.current, feedid: feedId, feed_instance_id: feedId })],
playlist: [deepCopy({ ...item, starttime: startTimeRef.current, feedid: feedId })],
repeat: false,
cast: {},
stretching: 'uniform',
Expand Down

0 comments on commit 1b2223b

Please sign in to comment.