fixed replying again

This commit is contained in:
MathMan05 2024-07-24 15:45:03 -05:00
parent 09f5dbac16
commit c7e3e41205
3 changed files with 7 additions and 6 deletions

View file

@ -696,9 +696,9 @@ class Channel {
if (replyingto) { if (replyingto) {
replyjson = replyjson =
{ {
"guild_id": replyingto.guild.id.id, "guild_id": replyingto.guild.id,
"channel_id": replyingto.channel.id.id, "channel_id": replyingto.channel.id,
"message_id": replyingto.id.id, "message_id": replyingto.id,
}; };
} }
; ;

View file

@ -696,9 +696,9 @@ class Channel{
if(replyingto){ if(replyingto){
replyjson= replyjson=
{ {
"guild_id":replyingto.guild.id.id, "guild_id":replyingto.guild.id,
"channel_id": replyingto.channel.id.id, "channel_id": replyingto.channel.id,
"message_id": replyingto.id.id, "message_id": replyingto.id,
}; };
}; };
if(attachments.length===0){ if(attachments.length===0){

View file

@ -1190,6 +1190,7 @@ span {
#replybox.hideReplyBox{ #replybox.hideReplyBox{
height: 0in; height: 0in;
padding: 0in; padding: 0in;
overflow: hidden;
} }
.Buttons{ .Buttons{
background:var(--primary-bg); background:var(--primary-bg);