diff --git a/tubearchivist/home/src/frontend/forms.py b/tubearchivist/home/src/frontend/forms.py index 90927c4b..1e4365c2 100644 --- a/tubearchivist/home/src/frontend/forms.py +++ b/tubearchivist/home/src/frontend/forms.py @@ -98,7 +98,9 @@ class ApplicationSettingsForm(forms.Form): ("1", "enable cookie"), ] - subscriptions_channel_size = forms.IntegerField(required=False) + subscriptions_channel_size = forms.IntegerField( + required=False, min_value=1 + ) downloads_limit_count = forms.IntegerField(required=False) downloads_limit_speed = forms.IntegerField(required=False) downloads_throttledratelimit = forms.IntegerField(required=False)