diff --git a/Source/APNGKit/APNGImageView.swift b/Source/APNGKit/APNGImageView.swift index d61d7aa..ce3cff8 100644 --- a/Source/APNGKit/APNGImageView.swift +++ b/Source/APNGKit/APNGImageView.swift @@ -384,7 +384,7 @@ open class APNGImageView: PlatformView { // // Also check to ignore when `timestamp` is still 0. It is an app lifetime change from iOS 17 where an APNGImage // instance already exists when app starts. See #139. - if let timer = drivingTimer, timer.timestamp == 0 { + if let timer = drivingTimer, timer.timestamp != 0 { displayingFrameStarted = timer.timestamp } else { displayingFrameStarted = nil