From 9340a75e7c34596328bc7e10631c079f233734bc Mon Sep 17 00:00:00 2001 From: ConfusedPolarBear <33811686+ConfusedPolarBear@users.noreply.github.com> Date: Tue, 30 Aug 2022 02:39:10 -0500 Subject: [PATCH] Clear the show select before populating it --- .../Configuration/configPage.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html index a385500..377eb03 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html +++ b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html @@ -367,6 +367,11 @@ return; } + // ensure the series select is empty + while (selectShow.options.length > 0) { + selectShow.remove(0); + } + Dashboard.showLoadingMsg(); shows = await getJson("Intros/Shows");