fix: mark screen recorder sendable

This commit is contained in:
Peter Steinberger 2025-12-29 20:28:06 +01:00
parent c11e2d9e5e
commit 24151a2028
1 changed files with 1 additions and 1 deletions

View File

@ -1,7 +1,7 @@
import AVFoundation
import ReplayKit
final class ScreenRecordService {
final class ScreenRecordService: @unchecked Sendable {
private struct UncheckedSendableBox<T>: @unchecked Sendable {
let value: T
}