Respect max tag length

This commit is contained in:
Stefan Wehrmeyer 2022-03-15 14:46:37 +01:00
parent 0bfceca2e7
commit 0750b28c7b
2 changed files with 8 additions and 2 deletions

View file

@ -19,7 +19,7 @@ def make_request_url(plan, publicbody):
query = {
"subject": subject.encode("utf-8"),
"body": body,
"tags": "{},{}{}".format(TAG_NAME, PLAN_TAG_PREFIX, plan.slug),
"tags": "{},{}{}".format(TAG_NAME, plan.get_plan_tag()),
}
hide_features = ["hide_public", "hide_similar", "hide_draft"]