From 8f0ea700a5999f9dbd813715a926c3feb19619aa Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Wed, 29 Aug 2018 23:59:19 -0400 Subject: [PATCH] Fix QML error when pairing successfully --- app/gui/PcView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/gui/PcView.qml b/app/gui/PcView.qml index 118ba3b6..36ad37ea 100644 --- a/app/gui/PcView.qml +++ b/app/gui/PcView.qml @@ -49,7 +49,7 @@ GridView { pairDialog.close() // Display a failed dialog if we got an error - if (error !== null) { + if (error !== undefined) { errorDialog.text = error errorDialog.open() }