Fix auto-open media option not working

Bug introduced in ffa9685b41
This commit is contained in:
Pavel Djundik 2018-02-01 09:57:15 +02:00
parent 93265ef830
commit b4951b1f86

View file

@ -15,6 +15,8 @@ function renderPreview(preview, msg) {
return;
}
preview.shown = preview.shown && options.shouldOpenMessagePreview(preview.type);
const template = $(templates.msg_preview({preview: preview}));
const image = template.find("img:first");
@ -40,8 +42,6 @@ function appendPreview(preview, msg, template) {
return;
}
preview.shown = preview.shown && options.shouldOpenMessagePreview(preview.type);
const container = msg.closest(".messages");
const channelId = container.closest(".chan").data("id") || -1;
const activeChannelId = chat.find(".chan.active").data("id") || -2;