From 752b204be8b707e6dda6bc00a0e0ef3201838aa4 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sat, 22 Dec 2018 21:01:40 -0800 Subject: [PATCH] Use a shared UID for all Moonlight clients --- .../src/main/java/com/limelight/nvstream/http/NvHTTP.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/moonlight-common/src/main/java/com/limelight/nvstream/http/NvHTTP.java b/moonlight-common/src/main/java/com/limelight/nvstream/http/NvHTTP.java index f06f14fe..8bf8aa7b 100644 --- a/moonlight-common/src/main/java/com/limelight/nvstream/http/NvHTTP.java +++ b/moonlight-common/src/main/java/com/limelight/nvstream/http/NvHTTP.java @@ -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);