review for cleanup
This commit is contained in:
@@ -369,7 +369,7 @@ async function handleRtcSignal(rawJson) {
|
||||
|
||||
const offer = await peerConnection.createOffer();
|
||||
await peerConnection.setLocalDescription(offer);
|
||||
await waitForIceGatheringComplete(peerConnection);
|
||||
// await waitForIceGatheringComplete(peerConnection);
|
||||
|
||||
const payload = {
|
||||
type: "rtc_offer",
|
||||
@@ -401,7 +401,7 @@ async function handleRtcSignal(rawJson) {
|
||||
|
||||
const answer = await peerConnection.createAnswer();
|
||||
await peerConnection.setLocalDescription(answer);
|
||||
await waitForIceGatheringComplete(peerConnection);
|
||||
// await waitForIceGatheringComplete(peerConnection);
|
||||
|
||||
const payload = {
|
||||
type: "rtc_answer",
|
||||
@@ -530,7 +530,7 @@ async function waitForIceGatheringComplete(pc) {
|
||||
});
|
||||
} //Remove?
|
||||
|
||||
window.handleRtcSignal = handleRtcSignal;
|
||||
// window.handleRtcSignal = handleRtcSignal;
|
||||
|
||||
window.addEventListener("HybridWebViewMessageReceived", function (e) {
|
||||
LogMessage("Raw message: " + e.detail.message);
|
||||
|
||||
@@ -64,19 +64,19 @@ Start-Sleep -Seconds 5
|
||||
& '$clientExe' --user Ru_Kira
|
||||
"@
|
||||
|
||||
#$testScript = New-TabScript -Name "Test" -Content @"
|
||||
#Set-Location '$root'
|
||||
#Start-Sleep -Seconds 25
|
||||
#& '$clientExe' --user Test
|
||||
#"@
|
||||
# $testScript = New-TabScript -Name "Test" -Content @"
|
||||
# Set-Location '$root'
|
||||
# Start-Sleep -Seconds 25
|
||||
# & '$clientExe' --user Test
|
||||
# "@
|
||||
|
||||
$wtArgs = @(
|
||||
"new-tab --title `"SurrealDB`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$dockerScript`"",
|
||||
"new-tab --title `"RelayCore`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$coreScript`"",
|
||||
"new-tab --title `"RelayServer`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$serverScript`"",
|
||||
"new-tab --title `"Keeper317`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$keeperScript`"",
|
||||
# "new-tab --title `"Test`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$testScript`"",
|
||||
"new-tab --title `"Ru_Kira`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$kiraScript`""
|
||||
#"new-tab --title `"Test`" `"$ps`" -NoExit -ExecutionPolicy Bypass -File `"$testScript`""
|
||||
) -join " ; "
|
||||
|
||||
Write-Host ""
|
||||
|
||||
Reference in New Issue
Block a user