Skip to content

Commit

Permalink
ignore errors when fetching playlist metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
Uriopass committed Jan 10, 2024
1 parent c5d25c7 commit c5ebd9c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion musidex-daemon/src/domain/upload.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ pub async fn youtube_upload_playlist(
args.push(&stops);
}

args.extend_from_slice(&["--flat-playlist", "--yes-playlist", "-J", "--"]);
args.extend_from_slice(&["--flat-playlist", "--yes-playlist", "--ignore-errors", "-J", "--"]);
args.push(&url);

let metadata = ytdl_run_with_args(args)
Expand Down

0 comments on commit c5ebd9c

Please sign in to comment.