From 98df67a4ff4219b8d715dc3e547da981ed108d61 Mon Sep 17 00:00:00 2001 From: Ilias Pavlidakis Date: Tue, 12 Nov 2024 11:06:50 +0200 Subject: [PATCH] Update changelog --- CHANGELOG.md | 3 ++- .../Utils/VideoRendererPool/VideoRendererPool.swift | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 851145520..869cb3f85 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). # Upcoming -### 🔄 Changed +### 🐞 Fixed +- When joining one call after another, the last frame of the previous call was flashing for a split second in the new call [#596](https://github.com/GetStream/stream-video-swift/pull/596) # [1.14.0](https://github.com/GetStream/stream-video-swift/releases/tag/1.14.0) _November 06, 2024_ diff --git a/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift b/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift index c7c4df845..3861c3dde 100644 --- a/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift +++ b/Sources/StreamVideoSwiftUI/Utils/VideoRendererPool/VideoRendererPool.swift @@ -15,7 +15,7 @@ final class VideoRendererPool { /// Initializes the `VideoRendererPool` with a specified initial capacity. /// - /// - Parameter initialCapacity: The initial capacity of the pool (default is 2). + /// - Parameter initialCapacity: The initial capacity of the pool (default is 0). init(initialCapacity: Int = 0) { // Initialize the pool with a capacity and a factory closure to create `VideoRenderer` instances pool = ReusePool(initialCapacity: initialCapacity) {