minimuxer: use wrapper methods

This commit is contained in:
mahee96
2026-02-23 11:30:11 +05:30
parent e5dbf2b677
commit e891b7ec93
7 changed files with 151 additions and 103 deletions

View File

@@ -46,8 +46,8 @@ final class SendAppOperation: ResultOperation<()>
if let data = NSData(contentsOf: fileURL) {
do {
let bytes = Data(data).toRustByteSlice()
try yeet_app_afc(app.bundleIdentifier, bytes.forRust())
let bytes = Data(data)
try yeetAppAFC(app.bundleIdentifier, bytes)
self.progress.completedUnitCount += 1
self.finish(.success(()))
} catch {