snapauthapp / sdk-swift

Swift SDK for SnapAuth (all Apple platforms)
https://www.snapauth.app
BSD 3-Clause "New" or "Revised" License
1 stars 0 forks source link

Clean up last remaining unguarded force-unwraps #21

Closed Firehed closed 4 months ago

Firehed commented 4 months ago

Force-unwraps can lead to runtime crashes if the underlying value is nil. I went through and searched for every ! in the codebase. Most already had a guard of some kind (some a literal guard, others with some other conditional). This adds some checks for the last ones:

Fixes #9