Merge pull request #215 from rinpatch/fix/content-type-error-typo

status_post: fix a typo in the error message when trying to use content_type without pleroma feature set
This commit is contained in:
Lorenz Diener 2020-05-18 17:52:00 +02:00 cometido por GitHub
commit 28b6cc6c06
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: 4AEE18F83AFDEB23

Veure arxiu

@ -1711,7 +1711,7 @@ class Mastodon:
if content_type != None:
if self.feature_set != "pleroma":
raise MastodonIllegalArgumentError('quote_id is only available with feature set pleroma')
raise MastodonIllegalArgumentError('content_type is only available with feature set pleroma')
# It would be better to read this from nodeinfo and cache, but this is easier
if not content_type in ["text/plain", "text/html", "text/markdown", "text/bbcode"]:
raise MastodonIllegalArgumentError('Invalid content type specified')