This commit is contained in:
MathMan05 2025-01-03 13:12:21 -06:00
parent 2c4851f423
commit f9060ecbfc
2 changed files with 3 additions and 3 deletions

View file

@ -280,8 +280,8 @@ class Message extends SnowFlake {
body: JSON.stringify({content}), body: JSON.stringify({content}),
}); });
} }
delete() { async delete() {
fetch(`${this.info.api}/channels/${this.channel.id}/messages/${this.id}`, { await fetch(`${this.info.api}/channels/${this.channel.id}/messages/${this.id}`, {
headers: this.headers, headers: this.headers,
method: "DELETE", method: "DELETE",
}); });

View file

@ -116,7 +116,7 @@ samp {
} }
video, video,
iframe { iframe {
max-height: 50svh; /* max-height: 50svh; */
max-width: 100%; max-width: 100%;
} }
audio::-webkit-media-controls-panel { audio::-webkit-media-controls-panel {