From 571d27c814bf57fab92e07712e729af76b95f2e1 Mon Sep 17 00:00:00 2001 From: Spidy123222 <64176728+Spidy123222@users.noreply.github.com> Date: Thu, 27 Jul 2023 23:42:32 -0700 Subject: [PATCH] Fix message and put in proper spot. Signed-off-by: Spidy123222 <64176728+Spidy123222@users.noreply.github.com> --- AltStore/Operations/InstallAppOperation.swift | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/AltStore/Operations/InstallAppOperation.swift b/AltStore/Operations/InstallAppOperation.swift index f66e91e4..144b0be8 100644 --- a/AltStore/Operations/InstallAppOperation.swift +++ b/AltStore/Operations/InstallAppOperation.swift @@ -169,14 +169,14 @@ final class InstallAppOperation: ResultOperation let content = UNMutableNotificationContent() content.title = "Refreshing..." - content.body = "To finish refreshing SideStore must go to the home screen. Please reopen after!" + content.body = "SideStore will automatically move to the homescreen to finish refreshing!" let notification = UNNotificationRequest(identifier: Bundle.Info.appbundleIdentifier + ".FinishRefreshNotification", content: content, trigger: UNTimeIntervalNotificationTrigger(timeInterval: 2, repeats: false)) UNUserNotificationCenter.current().add(notification) break default: print("Notifications are not enabled") - let alert = UIAlertController(title: "Finish Refresh", message: "SideStore will automatically be moved to the background to finish refreshing. Please reopen SideStore after the process is finished.", preferredStyle: .alert) + let alert = UIAlertController(title: "Finish Refresh", message: "Please reopen SideStore after the process is finished.To finish refreshing, SideStore must be moved to the background. To do this, you can either go to the Home Screen manually or by hitting Continue. Please reopen SideStore after doing this.", preferredStyle: .alert) alert.addAction(UIAlertAction(title: NSLocalizedString("Continue", comment: ""), style: .default, handler: { _ in print("Going home") UIApplication.shared.perform(#selector(NSXPCConnection.suspend))