From 94b6b1e845cc867681d88e6d6673ce71f67a889d Mon Sep 17 00:00:00 2001 From: Rory& Date: Sat, 24 May 2025 20:59:49 +0200 Subject: Expose colored string as static in MessageBuilder --- LibMatrix/Helpers/MessageBuilder.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'LibMatrix/Helpers/MessageBuilder.cs') diff --git a/LibMatrix/Helpers/MessageBuilder.cs b/LibMatrix/Helpers/MessageBuilder.cs index 87a9992..6f55739 100644 --- a/LibMatrix/Helpers/MessageBuilder.cs +++ b/LibMatrix/Helpers/MessageBuilder.cs @@ -37,6 +37,10 @@ public class MessageBuilder(string msgType = "m.text", string format = "org.matr return this; } + public static string GetColoredBody(string color, string body) { + return $"{body}"; + } + public MessageBuilder WithColoredBody(string color, string body) { Content.Body += body; Content.FormattedBody += $"{body}"; @@ -94,7 +98,7 @@ public class MessageBuilder(string msgType = "m.text", string format = "org.matr public MessageBuilder WithMention(string id, string? displayName = null) { Content.Body += $"@{displayName ?? id}"; Content.FormattedBody += $"{displayName ?? id}"; - if(id == "@room") { + if (id == "@room") { Content.Mentions ??= new(); Content.Mentions.Room = true; } -- cgit 1.5.1