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
Fix getAppIcon() crash on iOS 26 Simulator
UIImage(named:) can raise NSInternalInconsistencyException ("Need an
imageRef") for app icon assets that can't be rasterized for the current
trait, bypassing Swift's optional-based error handling. Wrap the call in
PulseObjCExceptionCatcher via a new reusable `attempt` helper.
Fixes#364.