1
0
mirror of https://github.com/mamoe/mirai.git synced 2025-04-03 14:20:10 +08:00

Fixed message sending ignoring modifies via MessagePreSendEvent. ()

This commit is contained in:
NoMathExpectation 2023-03-21 21:10:47 +08:00 committed by GitHub
parent 50a24582a7
commit 64f80949ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -260,7 +260,7 @@ internal suspend fun <C : AbstractContact> C.sendMessageImpl(
val chain = broadcastMessagePreSendEvent(message, skipEvent, preSendEventConstructor)
val result = kotlin.runCatching {
MessageProtocolFacade.preprocessAndSendOutgoing(this, message, buildComponentStorage {
MessageProtocolFacade.preprocessAndSendOutgoing(this, chain, buildComponentStorage {
set(MessageProtocolStrategy, messageProtocolStrategy)
set(HighwayUploader, HighwayUploader.Default)
set(ClockHolder, bot.components[ClockHolder])