Skip to content

Commit 6a0ac4b

Browse files
committed
fix(redacted): minimalize url bbcode to improve integration with other tools
1 parent fa8ce5e commit 6a0ac4b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/redacted/util.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ use crate::built_info;
22

33
pub fn create_description(original_torrent_perma_url: String, transcode_command: String) -> String {
44
return format!(
5-
"Transcode of [url={}]{}[/url]\n\nTranscode process:\n[code]{}[/code]\nCreated using [url=https://github.com/DevYukine/red_oxide]red_oxide v{} by DevYukine[/url]",
6-
original_torrent_perma_url, original_torrent_perma_url, transcode_command, built_info::PKG_VERSION
5+
"Transcode of [url]{}[/url]\n\nTranscode process:\n[code]{}[/code]\nCreated using [url=https://github.com/DevYukine/red_oxide]red_oxide v{} by DevYukine[/url]",
6+
original_torrent_perma_url, transcode_command, built_info::PKG_VERSION
77
);
88
}
99

0 commit comments

Comments
 (0)