Fix QML error when pairing successfully

This commit is contained in:
Cameron Gutman 2018-08-29 23:59:19 -04:00
parent b7cbec0b1c
commit 8f0ea700a5

View file

@ -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()
}