We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 278e3db commit a011255Copy full SHA for a011255
src/redacted/upload.rs
@@ -23,7 +23,7 @@ impl Into<Form> for TorrentUploadData {
23
fn into(self) -> Form {
24
let torrent_part = Part::bytes(self.torrent).file_name(self.torrent_name);
25
26
- return Form::new()
+ Form::new()
27
.part("file_input", torrent_part)
28
.text("type", self.r#type.as_int().to_string())
29
.text("remaster_title", self.remaster_title)
@@ -34,6 +34,6 @@ impl Into<Form> for TorrentUploadData {
34
.text("bitrate", self.bitrate)
35
.text("media", self.media)
36
.text("release_desc", self.release_desc)
37
- .text("groupid", self.group_id.to_string());
+ .text("groupid", self.group_id.to_string())
38
}
39
0 commit comments