Clear the show select before populating it

This commit is contained in:
ConfusedPolarBear 2022-08-30 02:39:10 -05:00
parent 82922b3241
commit 9340a75e7c

View File

@ -367,6 +367,11 @@
return; return;
} }
// ensure the series select is empty
while (selectShow.options.length > 0) {
selectShow.remove(0);
}
Dashboard.showLoadingMsg(); Dashboard.showLoadingMsg();
shows = await getJson("Intros/Shows"); shows = await getJson("Intros/Shows");