From c9935804b08a5ca895e10ec69e79693a7664cb17 Mon Sep 17 00:00:00 2001 From: Tobias Fella Date: Wed, 25 Aug 2021 00:20:24 +0200 Subject: [PATCH] Fix QML warning in ImageDelegate --- imports/NeoChat/Component/Timeline/ImageDelegate.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imports/NeoChat/Component/Timeline/ImageDelegate.qml b/imports/NeoChat/Component/Timeline/ImageDelegate.qml index fc41d77bc..8747faced 100644 --- a/imports/NeoChat/Component/Timeline/ImageDelegate.qml +++ b/imports/NeoChat/Component/Timeline/ImageDelegate.qml @@ -31,7 +31,7 @@ Image { Image { anchors.fill: parent - source: "image://blurhash/" + content.info["xyz.amorgan.blurhash"] + source: content.info["xyz.amorgan.blurhash"] ? ("image://blurhash/" + content.info["xyz.amorgan.blurhash"]) : "" visible: parent.status !== Image.Ready }