From 613a5ef1d773c01b7e5addb81130fc6697e4e732 Mon Sep 17 00:00:00 2001 From: Willian Galvani Date: Wed, 28 Aug 2024 23:00:36 -0300 Subject: [PATCH] default signalling goes through /webrtc --- src/stores/mainVehicle.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stores/mainVehicle.ts b/src/stores/mainVehicle.ts index f71bad2c1..d8d6034a3 100644 --- a/src/stores/mainVehicle.ts +++ b/src/stores/mainVehicle.ts @@ -74,7 +74,7 @@ export const useMainVehicleStore = defineStore('main-vehicle', () => { const globalAddress = useStorage('cockpit-vehicle-address', defaultGlobalAddress) const defaultMainConnectionURI = computed(() => `${ws_protocol}://${globalAddress.value}/mavlink2rest/ws/mavlink`) - const defaultWebRTCSignallingURI = computed(() => `${ws_protocol}://${globalAddress.value}:6021/`) + const defaultWebRTCSignallingURI = computed(() => `${ws_protocol}://${globalAddress.value}/webrtc/ws`) const customMainConnectionURI = useStorage('cockpit-vehicle-custom-main-connection-uri', { data: defaultMainConnectionURI.value, enabled: false,