feat(channels): use plain text as default output formatter for Signal

This commit is contained in:
Vít Rozsíval
2026-04-09 12:26:54 +02:00
parent a26f762635
commit 80af18a174
+1
View File
@@ -517,6 +517,7 @@ fn default_output_format_for_channel(channel_type: &str) -> OutputFormat {
"telegram" => OutputFormat::TelegramHtml,
"slack" => OutputFormat::SlackMrkdwn,
"wecom" => OutputFormat::PlainText,
"signal" => OutputFormat::PlainText,
_ => OutputFormat::Markdown,
}
}