Skip to content

Commit

Permalink
Fix missing continue statement
Browse files Browse the repository at this point in the history
  • Loading branch information
hstr0100 committed Oct 21, 2024
1 parent 7023494 commit e3a8fe0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions core/src/main/java/net/brlns/gdownloader/YtDlpDownloader.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@
//TODO Implement rate-limiting options internally; the way it's currently implemented does not account for concurrent or non-playlist downloads.
//TODO Notify the user whenever a setting that requires restart was changed.
//TODO Settings version
//TODO Quit lingering ffmpeg processes spawned by yt-dlp
//Off to a bootcamp, project on pause
/**
* @author Gabriel / hstr0100 / vertx010
Expand Down Expand Up @@ -748,6 +749,7 @@ public void processQueue(){
//and subtitles are already embedded by default, if they fail we just move on.
//For now, downloading only subs or thumbs is not supported.
log.error("Failed to download {}: {}", type, result.getValue());
continue;
}
}

Expand Down

0 comments on commit e3a8fe0

Please sign in to comment.