mirror of
https://github.com/thelounge/thelounge
synced 2024-11-10 22:54:15 +00:00
Merge pull request #2043 from thelounge/xpaw/preview-on-failed-img
Still render link previews if image fails to load
This commit is contained in:
commit
7883feca30
1 changed files with 9 additions and 0 deletions
|
@ -27,6 +27,15 @@ function renderPreview(preview, msg) {
|
|||
// If there is an image in preview, wait for it to load before appending it to DOM
|
||||
// This is done to prevent problems keeping scroll to the bottom while images load
|
||||
image.on("load", () => appendPreview(preview, msg, template));
|
||||
|
||||
// If the image fails to load, remove it from DOM and still render the preview
|
||||
if (preview.type === "link") {
|
||||
image.on("abort error", () => {
|
||||
image.parent().remove();
|
||||
|
||||
appendPreview(preview, msg, template);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
function appendPreview(preview, msg, template) {
|
||||
|
|
Loading…
Reference in a new issue