From f7792b72bf83cf0f69c0ba1f527d962f91c14baa Mon Sep 17 00:00:00 2001 From: selsta Date: Mon, 13 Dec 2021 04:33:15 +0100 Subject: [PATCH] RemoteNodeList: fix qml warning --- components/RemoteNodeList.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/RemoteNodeList.qml b/components/RemoteNodeList.qml index 61bc7dac..cbb2a02e 100644 --- a/components/RemoteNodeList.qml +++ b/components/RemoteNodeList.qml @@ -89,7 +89,7 @@ ColumnLayout { anchors.fill: parent anchors.rightMargin: 80 color: "transparent" - property var trusted: remoteNodesModel.get(index).trusted + property var trusted: remoteNodesModel.get(index) ? remoteNodesModel.get(index).trusted : false MoneroComponents.TextPlain { id: addressText