fix(ios): replace FileManager.default with FileManager() for Swift 6.2 compatibility
This commit is contained in:
committed by
Peter Steinberger
parent
87d995bcde
commit
e14ff8f407
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user