fix: repeat, greet, bye, boost messages can now once again mention anyone

fix: .say #channel fixed
This commit is contained in:
Kwoth
2024-05-11 07:59:37 +00:00
parent d766295286
commit 0da8190637
5 changed files with 15 additions and 9 deletions

View File

@@ -269,7 +269,11 @@ public sealed class RepeaterService : IReadyExecutor, INService
var text = SmartText.CreateFrom(repeater.Message);
text = await _repSvc.ReplaceAsync(text, repCtx);
var newMsg = await _sender.Response(channel).Text(text).SendAsync();
var newMsg = await _sender.Response(channel)
.Text(text)
.Sanitize(false)
.SendAsync();
_ = newMsg.AddReactionAsync(new Emoji("🔄"));
if (_noRedundant.Contains(repeater.Id))