From 9b973a4b5392cfb287314ae2bf1a24cbf00b4aa3 Mon Sep 17 00:00:00 2001 From: Christopher Snowhill Date: Mon, 10 Mar 2025 23:03:47 -0700 Subject: [PATCH] Bug Fix: Don't display notification on seek Signed-off-by: Christopher Snowhill --- Audio/AudioPlayer.m | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Audio/AudioPlayer.m b/Audio/AudioPlayer.m index 49c2ec9d3..2d86bf99e 100644 --- a/Audio/AudioPlayer.m +++ b/Audio/AudioPlayer.m @@ -98,7 +98,9 @@ } bufferChain = [[BufferChain alloc] initWithController:self]; - [self notifyStreamChanged:userInfo]; + if(!resumeInterval) { + [self notifyStreamChanged:userInfo]; + } while(![bufferChain open:url withOutputFormat:[output format] withUserInfo:userInfo withRGInfo:rgi]) { bufferChain = nil;