fix(ios): replace FileManager.default with FileManager() for Swift 6.2 compatibility

This commit is contained in:
Ryan Lisse
2026-01-18 20:46:29 +01:00
committed by Peter Steinberger
parent 87d995bcde
commit e14ff8f407
4 changed files with 9 additions and 9 deletions

View File

@@ -837,7 +837,7 @@ final class NodeAppModel {
fps: params.fps,
includeAudio: params.includeAudio,
outPath: nil)
defer { try? FileManager.default.removeItem(atPath: path) }
defer { try? FileManager().removeItem(atPath: path) }
let data = try Data(contentsOf: URL(fileURLWithPath: path))
struct Payload: Codable {
var format: String