Skip to content

Commit

Permalink
Fix function that depends on never type fallback being ()
Browse files Browse the repository at this point in the history
See issue #123748 <rust-lang/rust#123748>
  • Loading branch information
nickelc committed Nov 28, 2024
1 parent e1d201c commit d5ce853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/games.rs
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ impl Tags {
self.modio
.request(route)
.form(&[("from", from), ("to", to)])
.send()
.send::<()>()
.await?;

Ok(())
Expand Down

0 comments on commit d5ce853

Please sign in to comment.