mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-31 03:33:36 -05:00
Fix Tts
This commit is contained in:
parent
3d10db639c
commit
e7e02bc8ab
1 changed files with 1 additions and 1 deletions
|
@ -67,7 +67,7 @@ export default definePlugin({
|
|||
if (optimistic || type !== "MESSAGE_CREATE") return;
|
||||
if (message.state === "SENDING") return;
|
||||
if (!message.content) return;
|
||||
if (message.channel_id !== getCurrentChannel()?.id ?? 0) return;
|
||||
if (message.channel_id !== getCurrentChannel()?.id) return;
|
||||
|
||||
readOutText(message.content);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue