Modernize HTTPS launch/resume for Sunshine

This commit is contained in:
Cameron Gutman
2023-02-20 22:04:41 -06:00
parent b961636f02
commit 80acd9b9eb
6 changed files with 52 additions and 39 deletions

View File

@@ -75,6 +75,7 @@ public class ComputerDetails {
public PairingManager.PairState pairState;
public int runningGameId;
public String rawAppList;
public boolean nvidiaServer;
public ComputerDetails() {
// Use defaults
@@ -143,6 +144,7 @@ public class ComputerDetails {
this.httpsPort = details.httpsPort;
this.pairState = details.pairState;
this.runningGameId = details.runningGameId;
this.nvidiaServer = details.nvidiaServer;
this.rawAppList = details.rawAppList;
}