Custom URL Scheme no working on Safari - Monterey

Hi. In Monterey beta 5 (the same was observed in previous betas) our application is not launched from Safari browser. The Bundle URL is properly registered in Info.plist (this is working OK in previous OS versions and also it is working ok in Monterey using other browser) The custom URL is registered in this way

<key>CFBundleURLTypes</key>
<array>
	<dict>
		<key>CFBundleTypeRole</key>
		<string>Editor</string>
		<key>CFBundleURLName</key>
		<string>NNNN</string>
		<key>CFBundleURLSchemes</key>
		<array>
			<string>NNNN</string>
		</array>
	</dict>
</array>

NNNN represents out custom url scheme

I didn't find any reference about some change on this API on Monterey (https://developer.apple.com/documentation/xcode/defining-a-custom-url-scheme-for-your-app)
Thanks

A few days ago I was working on an app, and I noticed the same problem that was reported previously. It happened to me in Monterey B2 (randomly but with very few occurrences), and in B4, where the issue occurs almost permanently. The same app works fine on BigSur and Catalina. Issue is happening browsing with Safari only.

Was there a recent change in Monterey that is causing this behavior? Any rule that is required in the plist to correct this issue?

There are not many details about it in Monterey API.

Also I tried the same on Big Sur 11.5.2 + Safari Beta 15 (16612.1.28.1, 16612) and the same problem happens using my Application and also other applications: the URL is not redirected

Custom URL Scheme no working on Safari - Monterey
 
 
Q