Merge pull request #2027 from thelounge/xpaw/fix-auto-open-media

Fix auto-open media option not working
This commit is contained in:
Pavel Djundik 2018-02-01 10:07:51 +02:00 committed by GitHub
commit e5fa6e32f9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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;