Fix broken shortcuts
This commit is contained in:
parent
917771a79a
commit
83d5731f3a
|
@ -35,7 +35,7 @@ class UserActivityManager {
|
||||||
static func handleNewPost(activity: NSUserActivity) {
|
static func handleNewPost(activity: NSUserActivity) {
|
||||||
// TODO: check not currently showing compose screen
|
// TODO: check not currently showing compose screen
|
||||||
let mentioning = activity.userInfo?["mentioning"] as? String
|
let mentioning = activity.userInfo?["mentioning"] as? String
|
||||||
present(ComposeViewController(mentioningAcct: mentioning))
|
present(UINavigationController(rootViewController: ComposeViewController(mentioningAcct: mentioning)))
|
||||||
}
|
}
|
||||||
|
|
||||||
// MARK: - Check Notifications
|
// MARK: - Check Notifications
|
||||||
|
@ -49,7 +49,7 @@ class UserActivityManager {
|
||||||
|
|
||||||
static func handleCheckNotifications(activity: NSUserActivity) {
|
static func handleCheckNotifications(activity: NSUserActivity) {
|
||||||
let tabBarController = UIApplication.shared.keyWindow!.rootViewController! as! UITabBarController
|
let tabBarController = UIApplication.shared.keyWindow!.rootViewController! as! UITabBarController
|
||||||
tabBarController.selectedIndex = 2
|
tabBarController.selectedIndex = 1
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue