From 795d551639340d81641aa8c6eabff1776e0b2ee1 Mon Sep 17 00:00:00 2001 From: Christian Mollekopf Date: Fri, 2 Mar 2018 09:07:12 +0100 Subject: Ignore messages that have nothing to say. --- views/log/qml/View.qml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'views') diff --git a/views/log/qml/View.qml b/views/log/qml/View.qml index 7e95e20f..9b2ac24a 100644 --- a/views/log/qml/View.qml +++ b/views/log/qml/View.qml @@ -42,6 +42,10 @@ Controls.SplitView { Kube.Listener { filter: Kube.Messages.notification onMessageReceived: { + //Ignore noise that we can't usefully render anyways + if (!message.message) { + return + } if (message.type == Kube.Notifications.error) { root.pendingError = true } -- cgit v1.2.3