App's event handler for Safari, Finder Share Menu actions are no longer called in Big Sur

In my latest app submission, and having installed to verify, my app no longer received actions from Share menu of Safari or Finder.

Not seeing so far in release notes or unsure what's different?
I should not that this app is already on the store now, it's just Big Sur execution fails to call my declared handler:

Code Block
func applicationWillFinishLaunching(_ notification: Notification) {
NSAppleEventManager.shared().setEventHandler(
self,
andSelector: #selector(AppDelegate.handleURLEvent(_:withReply:)),
forEventClass: AEEventClass(kInternetEventClass),
andEventID: AEEventID(kAEGetURL)
)
}


I have the same problem on Big Sur 11.2
App's event handler for Safari, Finder Share Menu actions are no longer called in Big Sur
 
 
Q