From ebf36cb59476871163ae88f6b61023e9129127a1 Mon Sep 17 00:00:00 2001 From: 0xboobface <0xboobface@gmail.com> Date: Wed, 3 Oct 2018 16:42:42 +0200 Subject: [PATCH] Invalidate cache entries, so that we have the correct playlist URL --- src/main/java/ctbrec/ui/StreamSourceSelectionDialog.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/java/ctbrec/ui/StreamSourceSelectionDialog.java b/src/main/java/ctbrec/ui/StreamSourceSelectionDialog.java index a4383b18..14db2b6b 100644 --- a/src/main/java/ctbrec/ui/StreamSourceSelectionDialog.java +++ b/src/main/java/ctbrec/ui/StreamSourceSelectionDialog.java @@ -26,6 +26,7 @@ public class StreamSourceSelectionDialog { Task> selectStreamSource = new Task>() { @Override protected List call() throws Exception { + model.invalidateCacheEntries(); StreamInfo streamInfo = model.getStreamInfo(); MasterPlaylist masterPlaylist = model.getMasterPlaylist(); List sources = new ArrayList<>();