1
0
mirror of https://github.com/ihabunek/toot synced 2024-12-21 14:36:47 +01:00

Don't set default visibility to public

Leave it blank so the server can decide
This commit is contained in:
Ivan Habunek 2024-11-27 19:55:48 +01:00
parent 54a111d669
commit af09020cec
No known key found for this signature in database
GPG Key ID: 01DB3DD0D824504C

View File

@ -44,7 +44,6 @@ from toot.utils.datetime import parse_datetime
help="Post visibility: " + "; "
.join("{} = {}".format(visibility, description)
for visibility, caption, description in VISIBILITY_OPTIONS),
default=VISIBILITY_CHOICES[0],
type=click.Choice(VISIBILITY_CHOICES),
)
@click.option(