Fixed an accidental bug in empty responses

This commit is contained in:
2023-08-08 10:50:06 -06:00
parent d132068152
commit 9a59ee0af9
+1 -1
View File
@@ -890,7 +890,7 @@ impl<'a> Network<'a> {
.await;
self
.handle_request::<ReleaseDownloadBody, ()>(request_props, |_, _| ())
.handle_request::<ReleaseDownloadBody, Value>(request_props, |_, _| ())
.await;
}