refactor!: rename title field to name

This commit is contained in:
ThetaDev 2022-12-27 23:28:25 +01:00
parent 5188527b94
commit 1b94dc1f40
88 changed files with 2142 additions and 2142 deletions

View file

@ -82,7 +82,7 @@ async fn download_single_video(
.await
.context(format!(
"Failed to download video '{}' [{}]",
player_data.details.title, video_id
player_data.details.name, video_id
))
}
.await;
@ -167,7 +167,7 @@ async fn download_playlist(
.map(|video| {
download_single_video(
video.id,
video.title,
video.name,
output_dir,
output_fname.to_owned(),
resolution,