You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After updating to iOS 17.4.1, we've noticed a change in behavior with this library. Instead of the usual passkey selection menu, a QR code is now displayed as shown below:
instead of this:
To temporarily address this, removing the 'internal' reference from WebAuthn.php resolves the issue. $allow->transports = array('usb','nfc','ble');
(was $allow->transports = array('usb','nfc','ble','internal');
However, please note that this fix may impact the platform authentication option on desktop browsers.
The text was updated successfully, but these errors were encountered:
After updating to iOS 17.4.1, we've noticed a change in behavior with this library. Instead of the usual passkey selection menu, a QR code is now displayed as shown below:
instead of this:
To temporarily address this, removing the 'internal' reference from WebAuthn.php resolves the issue.
$allow->transports = array('usb','nfc','ble');
(was
$allow->transports = array('usb','nfc','ble','internal');
However, please note that this fix may impact the platform authentication option on desktop browsers.
The text was updated successfully, but these errors were encountered: