ryanrixxh / timestamper

Capture the moment stay in the moment. Timestamper helps Twitch streamers create markers and post them to Twitch! It call also save to local marker files.
https://timestamper.fly.dev/
1 stars 0 forks source link

.unwrap is used on non-guaranteed results #23

Open ryanrixxh opened 1 year ago

ryanrixxh commented 1 year ago

In the main Rust code, when gathering Results .unwrap() is used to extract the value from those results. This is unsuitable for much of the production code because unwrap will panic if it finds no value or an error in the Result.

Case matching should be used instead to process these results.