diff --git a/dist/spodcast-0.3.7.tar.gz b/dist/spodcast-0.3.7.tar.gz deleted file mode 100644 index 206d330..0000000 Binary files a/dist/spodcast-0.3.7.tar.gz and /dev/null differ diff --git a/dist/spodcast-0.4.1.tar.gz b/dist/spodcast-0.4.1.tar.gz deleted file mode 100644 index 70de775..0000000 Binary files a/dist/spodcast-0.4.1.tar.gz and /dev/null differ diff --git a/dist/spodcast-0.4.2.tar.gz b/dist/spodcast-0.4.2.tar.gz deleted file mode 100644 index 15cf65d..0000000 Binary files a/dist/spodcast-0.4.2.tar.gz and /dev/null differ diff --git a/dist/spodcast-0.4.3.tar.gz b/dist/spodcast-0.4.3.tar.gz new file mode 100644 index 0000000..a2cacb6 Binary files /dev/null and b/dist/spodcast-0.4.3.tar.gz differ diff --git a/setup.cfg b/setup.cfg index fc2687e..7a14ba9 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,6 +1,6 @@ [metadata] name = spodcast -version = 0.4.2 +version = 0.4.3 description = A caching Spotify podcast to RSS proxy. long_description = file:README.md long_description_content_type = text/markdown diff --git a/spodcast/feedgenerator.py b/spodcast/feedgenerator.py index e86cfdc..9ae2bf4 100644 --- a/spodcast/feedgenerator.py +++ b/spodcast/feedgenerator.py @@ -827,8 +827,8 @@ $UPDATE_RATE=$settings['update_rate']; id = basename(url); max=document.getElementById('max-' + id); keep=document.getElementById('keep-' + id); - maxval = max.value; - keepval = keep.value; + maxval = parseInt(max.value); + keepval = parseInt(keep.value); if(maxval > keepval) { keeper = (maxval > 2) ? 5 : 2; if (confirm("Sync count " + maxval + " is higher than Keep count " + keepval + "\n\n" +