sad meme noises

This commit is contained in:
_Lighty_ 2020-03-14 00:40:16 +01:00 committed by GitHub
parent 4c08ae6615
commit b168e0b733
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 4 deletions

View File

@ -830,14 +830,12 @@ var BetterImageViewer = (() => {
}
handleMessageDelete(e) {
const { channelId, id: messageId } = e;
if (e['__\x4e\x4f\x552Prevent\x46\x41\x47\x47\x4f\x54']) return;
stripDeletedMessage(channelId, messageId);
if (messageId !== this.state.__BIV_data.messageId) return;
this.handleMessageDeletes();
}
handlePurge(e) {
const { channelId, ids: messageIds } = e;
if (e['__\x4e\x4f\x552Prevent\x46\x41\x47\x47\x4f\x54']) return;
stripPurgedMessages(channelId, messageIds);
if (channelId !== DiscordAPI.currentChannel.id || messageIds.indexOf(this.state.__BIV_data.messageId) === -1) return;
for (const messageId of messageIds) {
@ -1373,12 +1371,10 @@ var BetterImageViewer = (() => {
handleMessageDelete(e) {
const { channelId, id: messageId } = e;
if (e['__\x4e\x4f\x552Prevent\x46\x41\x47\x47\x4f\x54']) return;
stripDeletedMessage(channelId, messageId);
}
handlePurge(e) {
const { channelId, ids: messageIds } = e;
if (e['__\x4e\x4f\x552Prevent\x46\x41\x47\x47\x4f\x54']) return;
stripPurgedMessages(channelId, messageIds);
}
handleWHChange({ value }) {