Fix incorrect call to clap

This commit is contained in:
Love 2024-08-06 16:23:26 +02:00
parent 648be5f09f
commit f501825852

View File

@ -26,7 +26,7 @@ async fn main() {
}
};
let master_link = matches.get_one::<Box<str>>("link").unwrap().as_ref();
let master_link = matches.get_one::<String>("link").unwrap().as_ref();
let base_url = match get_base_url(master_link) {
Ok(url) => url,
Err(e) => {