diff --git a/MediaManager/Platforms/Apple/Player/AppleMediaPlayer.cs b/MediaManager/Platforms/Apple/Player/AppleMediaPlayer.cs index c7e56366..4adfba55 100644 --- a/MediaManager/Platforms/Apple/Player/AppleMediaPlayer.cs +++ b/MediaManager/Platforms/Apple/Player/AppleMediaPlayer.cs @@ -227,7 +227,8 @@ protected virtual async void OnPlayerBoundaryReached() public virtual async Task Play(AVPlayerItem playerItem) { Player.ActionAtItemEnd = AVPlayerActionAtItemEnd.None; - Player.ReplaceCurrentItemWithPlayerItem(playerItem); + Player.RemoveAllItems(); + Player.InsertItem(playerItem, null); await Play(); }