fixed minor message generation bug

This commit is contained in:
MathMan05 2024-07-24 15:18:08 -05:00
parent 745d6cccff
commit dc044ea464
2 changed files with 2 additions and 2 deletions

View file

@ -172,7 +172,7 @@ class Message {
}
generateMessage(premessage = null) {
if (!premessage) {
premessage = this.channel.idToNext.get(this.snowflake)?.getObject();
premessage = this.channel.idToPrev.get(this.snowflake)?.getObject();
}
const div = this.div;
if (this === this.channel.replyingto) {