From c6ae17e41d3ceacab617ab16b32c9569c4f38d35 Mon Sep 17 00:00:00 2001 From: Paul <9328123+paul-rinaldi@users.noreply.github.com> Date: Mon, 12 Aug 2024 06:58:40 -0500 Subject: [PATCH] fix(ios): remove resume logic in notification seek closure (#4068) --- ios/Video/NowPlayingInfoCenterManager.swift | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/ios/Video/NowPlayingInfoCenterManager.swift b/ios/Video/NowPlayingInfoCenterManager.swift index b5d7b997..63e0e15f 100644 --- a/ios/Video/NowPlayingInfoCenterManager.swift +++ b/ios/Video/NowPlayingInfoCenterManager.swift @@ -167,9 +167,7 @@ class NowPlayingInfoCenterManager { return .commandFailed } if let event = event as? MPChangePlaybackPositionCommandEvent { - player.seek(to: CMTime(seconds: event.positionTime, preferredTimescale: .max)) { _ in - player.play() - } + player.seek(to: CMTime(seconds: event.positionTime, preferredTimescale: .max)) return .success } return .commandFailed