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: correct try?/?? operator precedence in legacy config fallback
try? Data(contentsOf: a) ?? Data(contentsOf: b) is parsed as
try? (Data(...) ?? Data(...)), so the fallback never fires.
Use explicit parentheses: (try? Data(...)) ?? (try? Data(...))
0 commit comments