Use a shared UID for all Moonlight clients

This commit is contained in:
Cameron Gutman 2018-12-22 21:01:40 -08:00
parent 564e7c71a6
commit 752b204be8

View File

@ -129,7 +129,9 @@ public class NvHTTP {
}
public NvHTTP(String address, String uniqueId, X509Certificate serverCert, LimelightCryptoProvider cryptoProvider) throws IOException {
this.uniqueId = uniqueId;
// Use the same UID for all Moonlight clients so we can quit games
// started by other Moonlight clients.
this.uniqueId = "0123456789ABCDEF";
initializeHttpState(serverCert, cryptoProvider);