diff --git a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html index b8dadf7..6229216 100644 --- a/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html +++ b/ConfusedPolarBear.Plugin.IntroSkipper/Configuration/configPage.html @@ -533,7 +533,7 @@ if (shifts.length === 0) { txtSuggested.textContent += "none available"; } else { - shifts.sort(); + shifts.sort((a, b) => { return a - b }); txtSuggested.textContent += shifts.join(", "); } }