[REGRESSION iOS 26.6] ManagedSettingsStore.webContent.blockedByFilter = .specific(…) blocks adult content

Hello,

we’re seeing a rather serious regression on iOS 26.6:

The issue appears to reproduce with a single named ManagedSettingsStore:

import ManagedSettings

let store = ManagedSettingsStore(named: ManagedSettingsStore.Name("specific"))

store.webContent.blockedByFilter = .specific([
    WebDomain(domain: "specific-domain-marker.example")
])

Expected behavior:

Only the explicitly configured .specific(...) web domain filter should be reflected in the effective ManagedSettings / ManagedConfiguration state.

Observed behavior:

After configuring this single store with .specific(...), I’m seeing unexpected additional websites being blocked (mostly adult content) which should only happen when using the .auto(…) API.

Documented under FB22890915 with Sample Project and Sysdiagnose.

[REGRESSION iOS 26.6] ManagedSettingsStore.webContent.blockedByFilter = .specific(…) blocks adult content
 
 
Q