diff --git a/Server/wwwroot/src/RemoteControl/InputEventHandlers.js b/Server/wwwroot/src/RemoteControl/InputEventHandlers.js index d7d7fdc5..8d18b157 100644 --- a/Server/wwwroot/src/RemoteControl/InputEventHandlers.js +++ b/Server/wwwroot/src/RemoteControl/InputEventHandlers.js @@ -141,7 +141,7 @@ export function ApplyInputHandlers() { url = `${location.origin}${location.pathname}?sessionID=${ViewerApp.CasterID}`; } else { - url = `${location.origin}${location.pathname}?clientID=${ViewerApp.CasterID}&serviceID=${ViewerApp.ServiceID}`; + url = `${location.origin}${location.pathname}?casterID=${ViewerApp.CasterID}&serviceID=${ViewerApp.ServiceID}`; } ViewerApp.ClipboardWatcher.SetClipboardText(url); ShowMessage("Link copied to clipboard."); diff --git a/Server/wwwroot/src/RemoteControl/InputEventHandlers.ts b/Server/wwwroot/src/RemoteControl/InputEventHandlers.ts index e00804f0..be101416 100644 --- a/Server/wwwroot/src/RemoteControl/InputEventHandlers.ts +++ b/Server/wwwroot/src/RemoteControl/InputEventHandlers.ts @@ -182,7 +182,7 @@ export function ApplyInputHandlers() { url = `${location.origin}${location.pathname}?sessionID=${ViewerApp.CasterID}`; } else { - url = `${location.origin}${location.pathname}?clientID=${ViewerApp.CasterID}&serviceID=${ViewerApp.ServiceID}`; + url = `${location.origin}${location.pathname}?casterID=${ViewerApp.CasterID}&serviceID=${ViewerApp.ServiceID}`; } ViewerApp.ClipboardWatcher.SetClipboardText(url); ShowMessage("Link copied to clipboard.");