Skip to content

Commit d5ce853

Browse files
committed
Fix function that depends on never type fallback being ()
See issue #123748 <rust-lang/rust#123748>
1 parent e1d201c commit d5ce853

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/games.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ impl Tags {
160160
self.modio
161161
.request(route)
162162
.form(&[("from", from), ("to", to)])
163-
.send()
163+
.send::<()>()
164164
.await?;
165165

166166
Ok(())

0 commit comments

Comments
 (0)