Fix tags on posts

API was expecting a list of strings rather than making you join strings
together with commas yourself
This commit is contained in:
Intercal
2025-08-18 09:34:52 -07:00
parent 768097a3a7
commit c01cefe130

View File

@@ -266,14 +266,14 @@ def do_post(
parent_blogname=reblog_parent,
id=reblog,
content=content,
tags=",".join(tags),
tags=tags,
media_sources=media_sources,
)
else:
response = tumblr.create_post(
config["blog"],
content=content,
tags=",".join(tags),
tags=tags,
media_sources=media_sources,
)
print("Got response:")