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
This is a library. Anything that can lead to panic should only be acceptable due to a bug. Any errors needs to be either handled or propagated to the caller, so the service using the library can decide if it needs to panic in this situation by itself.
Should be an easy fix, just grep for any unwrap()y code, and write some custom error enums.
The text was updated successfully, but these errors were encountered:
This is a library. Anything that can lead to panic should only be acceptable due to a bug. Any errors needs to be either handled or propagated to the caller, so the service using the library can decide if it needs to panic in this situation by itself.
Should be an easy fix, just grep for any
unwrap()
y code, and write some custom error enums.The text was updated successfully, but these errors were encountered: