Merge pull request #1348 from thelounge/astorije/fix-action-previews
Fix previews in actions ("/me") after page reload
This commit is contained in:
commit
ff757d4386
@ -73,16 +73,14 @@ function buildChatMessage(data) {
|
|||||||
const msg = $(templates[template](data.msg));
|
const msg = $(templates[template](data.msg));
|
||||||
const text = msg.find(".text");
|
const text = msg.find(".text");
|
||||||
|
|
||||||
if (data.msg.previews.length) {
|
|
||||||
data.msg.previews.forEach((preview) => {
|
|
||||||
renderPreview(preview, msg);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
if (template === "msg_action") {
|
if (template === "msg_action") {
|
||||||
text.html(templates.actions[type](data.msg));
|
text.html(templates.actions[type](data.msg));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
data.msg.previews.forEach((preview) => {
|
||||||
|
renderPreview(preview, msg);
|
||||||
|
});
|
||||||
|
|
||||||
if ((type === "message" || type === "action") && chan.hasClass("channel")) {
|
if ((type === "message" || type === "action") && chan.hasClass("channel")) {
|
||||||
const nicks = chan.find(".users").data("nicks");
|
const nicks = chan.find(".users").data("nicks");
|
||||||
if (nicks) {
|
if (nicks) {
|
||||||
|
Loading…
Reference in New Issue
Block a user