From e003e13c36990f07daa621da3efcc4d0ed603660 Mon Sep 17 00:00:00 2001 From: "Antonio J. Delgado" Date: Sun, 14 Sep 2025 08:51:18 +0300 Subject: [PATCH] fix dupe param --- mastodon_email_bridge/mastodon_email_bridge.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mastodon_email_bridge/mastodon_email_bridge.py b/mastodon_email_bridge/mastodon_email_bridge.py index 221abd0..7dcf606 100755 --- a/mastodon_email_bridge/mastodon_email_bridge.py +++ b/mastodon_email_bridge/mastodon_email_bridge.py @@ -438,7 +438,7 @@ class MastodonEmailBridge: ) @click.option( '--subjet-template', - '-t', + '-U', default='{{ data["account"]["display_name"] }} ({{ data["account"]["username"] }}) {% if data["in_reply_to_id"] %}replied {% else %}posted{% endif %}{% for tag in data["tags"] %} #{{ tag["name"] }}{% endfor %}', help='Jinja2 template for the subject of the emails.' )