diff --git a/AltStore/AppDelegate.swift b/AltStore/AppDelegate.swift index 81c2ff23..e8fb984c 100644 --- a/AltStore/AppDelegate.swift +++ b/AltStore/AppDelegate.swift @@ -92,7 +92,6 @@ final class AppDelegate: UIResponder, UIApplicationDelegate { } } - self.setTintColor() self.setTintColor() self.prepareImageCache() diff --git a/SideStore/MinimuxerWrapper.swift b/SideStore/MinimuxerWrapper.swift index e585dc11..7441fdb0 100644 --- a/SideStore/MinimuxerWrapper.swift +++ b/SideStore/MinimuxerWrapper.swift @@ -55,7 +55,8 @@ func yeetAppAFC(_ bundleId: String, _ rawBytes: Data) throws { #if targetEnvironment(simulator) print("yeetAppAFC(\(bundleId), \(rawBytes)) is no-op on simulator") #else - try minimuxer.yeet_app_afc(bundleId, rawBytes.toRustByteSlice().forRust()) + let slice = rawBytes.toRustByteSlice() + try minimuxer.yeet_app_afc(bundleId, slice.forRust()) #endif }