I'm seeing a notification come in through PushKit for my FileProvider extension on iOS:
func pushRegistry(_ registry: PKPushRegistry, didReceiveIncomingPushWith payload: PKPushPayload, for type: PKPushType, completion: @escaping () -> Void) {
print("FileProvider::pushDelegate::didReceiveIncomingPush", type.rawValue, payload.dictionaryPayload)
}
For example, I'm seeing:
FileProvider::pushDelegate::didReceiveIncomingPush PKPushTypeFileProvider [AnyHashable("aps"): {
"" = "{\"container-identifier\":\"NSFileProviderRootContainerItemIdentifier\"}";
}]
But I'm not getting a ping to enumerateChanges
in the enumerator that is currently active. What would cause this?