Hi,
We have an iOS app with Safari and Content Blocker extensions. Everything works fine when running the app on M1 devices except for the content blocker. The issue is with the following code:
contentBlockerManager.getStateOfContentBlocker(withIdentifier: "...") { [ weak self ] in state, error
...
}
I receive an error which I believe means the content blocker was not found:
SFErrorDomain error 1
Now, when running the exact same app with Mac Catalyst all works as expected.
Is there a reason for this to happen?
Thanks.