fix: error of notes with file
This commit is contained in:
parent
82dff9beb1
commit
add6081f18
1 changed files with 5 additions and 1 deletions
|
@ -219,7 +219,11 @@ function connectChannel() {
|
|||
channelId: props.channel,
|
||||
});
|
||||
}
|
||||
if (props.src !== "directs" && props.src !== "mentions")
|
||||
if (
|
||||
props.src !== "directs" &&
|
||||
props.src !== "mentions" &&
|
||||
props.src !== "file"
|
||||
)
|
||||
connection.on("note", prepend);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue