Skip to content

Commit

Permalink
updated to fix podcast issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Nansess committed May 1, 2024
1 parent 61527b8 commit cf7a6ce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -512,7 +512,7 @@ public AudioItem getPlaylist(String id, boolean preview) throws IOException {

for (var value : page.get("items").values()) {
var track = value.get("track");
if (track.isNull() || track.get("is_local").asBoolean(false)) {
if (track.isNull() || track.get("is_local").asBoolean(false) || track.get("type").text().equals("episode")) { // https://github.com/topi314/LavaSrc/commit/d35f8934fe66b8a453dba1d09d6a1374e9ce8fed
continue;
}
tracks.add(this.parseTrack(track, preview));
Expand Down

0 comments on commit cf7a6ce

Please sign in to comment.