From 3044c13dea2cb69481a9998070b5dc5b7a8496d9 Mon Sep 17 00:00:00 2001 From: Charlie Scheer Date: Thu, 23 May 2024 13:58:03 -0600 Subject: [PATCH] Updated app delegate to use shortcut handler to manage user activities --- Simplenote/SimplenoteAppDelegate+Swift.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Simplenote/SimplenoteAppDelegate+Swift.swift b/Simplenote/SimplenoteAppDelegate+Swift.swift index 7acb8e1ab..1bc9e0729 100644 --- a/Simplenote/SimplenoteAppDelegate+Swift.swift +++ b/Simplenote/SimplenoteAppDelegate+Swift.swift @@ -252,7 +252,7 @@ extension SimplenoteAppDelegate { return true } - return false + return ShortcutsHandler().handleUserActivity(userActivity) } }