fix mastodon toot visibility | fixed #20

This commit is contained in:
doubaniux 2020-05-08 12:16:41 +08:00
parent 182d6a9606
commit 32860bbe82

View file

@ -41,7 +41,7 @@ class RadioBooleanField(forms.ChoiceField):
value = False
else:
value = bool(value)
return super().to_python(value)
return value
class RatingValidator: