Refuse to stream if Moonlight is known incompatible with the host GFE version
This commit is contained in:
parent
b50e5ed7e6
commit
2fbb320539
11 changed files with 164 additions and 3 deletions
|
|
@ -220,7 +220,12 @@ CenteredGridView {
|
|||
|
||||
onClicked: {
|
||||
if (model.online) {
|
||||
if (model.paired) {
|
||||
if (!model.serverSupported) {
|
||||
errorDialog.text = qsTr("The version of GeForce Experience on %1 is not supported by this build of Moonlight. You must update Moonlight to stream from %1.").arg(model.name)
|
||||
errorDialog.helpText = ""
|
||||
errorDialog.open()
|
||||
}
|
||||
else if (model.paired) {
|
||||
// go to game view
|
||||
var component = Qt.createComponent("AppView.qml")
|
||||
var appView = component.createObject(stackView, {"computerIndex": index, "objectName": model.name})
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue