Skip to content

Commit d63855e

Browse files
committed
Merge branch 'master' into stable
2 parents dff44ea + 273c5ea commit d63855e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.9.1"
44
edition = "2021"
55
build = "build.rs"
66
authors = ["DevYukine [email protected]"]
7-
description = "A simple helper while uploading music to redacted.ch"
7+
description = "A simple helper while uploading music to redacted.sh"
88
homepage = "https://github.com/DevYukine/red_oxide"
99

1010
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

src/command/transcode.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -647,7 +647,7 @@ async fn handle_url(
647647

648648
let res = api.upload_torrent(upload_data).await?;
649649

650-
term.write_line(&format!("[🔼] Uploaded {} release to REDacted https://redacted.ch/torrents.php?id={}&torrentid={}", format, group_id, res.response.torrent_id))?;
650+
term.write_line(&format!("[🔼] Uploaded {} release to REDacted https://redacted.sh/torrents.php?id={}&torrentid={}", format, group_id, res.response.torrent_id))?;
651651
}
652652
}
653653

src/redacted/util.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ pub fn create_description(original_torrent_perma_url: String, transcode_command:
99

1010
pub fn perma_link(group_id: i64, torrent_id: i64) -> String {
1111
return format!(
12-
"https://redacted.ch/torrents.php?id={}&torrentid={}#torrent{}",
12+
"https://redacted.sh/torrents.php?id={}&torrentid={}#torrent{}",
1313
group_id, torrent_id, torrent_id
1414
);
1515
}

0 commit comments

Comments
 (0)