refactor!: rename title field to name
This commit is contained in:
parent
5188527b94
commit
1b94dc1f40
88 changed files with 2142 additions and 2142 deletions
|
|
@ -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,
|
||||
|
|
|
|||
Reference in a new issue