Fix invite button. ClientId changed to CasterId.

This commit is contained in:
Jared Goodwin 2021-07-28 17:31:11 -07:00
parent 24eb298914
commit 33ebb5302c
2 changed files with 2 additions and 2 deletions

View File

@ -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.");

View File

@ -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.");