Make sure we are logged to get max_characters

This commit is contained in:
jeancf 2023-07-19 19:45:43 +02:00
parent a50a077cd3
commit b6396f7b51

View File

@ -1150,6 +1150,7 @@ def main(argv):
mastodon = login(mast_password)
# Check toot character limit on mastodon instance
if mastodon is not None:
try:
max_characters = mastodon.instance().configuration.statuses['max_characters']
logging.debug('Instance character limit is '+ str(max_characters))