mirror of
https://github.com/moonlight-stream/moonlight-qt
synced 2024-11-10 21:54:17 +00:00
Fix QML error when pairing successfully
This commit is contained in:
parent
b7cbec0b1c
commit
8f0ea700a5
1 changed files with 1 additions and 1 deletions
|
@ -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()
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue