Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix qall url #4529

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 2 additions & 5 deletions src/composables/qall/useLiveKitSDK.ts
Original file line number Diff line number Diff line change
Expand Up @@ -193,10 +193,7 @@
// pre-warm connection, this can be called as early as your page is loaded
//room.prepareConnection("https://livekit-test.trap.show:39357", token);
room.value = new Room({ dynacast: true, adaptiveStream: true })
await room.value.prepareConnection(
'wss://livekit.qall-dev.trapti.tech',
token
)
await room.value.prepareConnection('wss://livekit.qall.trap.jp', token)

Check warning on line 196 in src/composables/qall/useLiveKitSDK.ts

View check run for this annotation

Codecov / codecov/patch

src/composables/qall/useLiveKitSDK.ts#L196

Added line #L196 was not covered by tests

// set up event listeners
room.value
Expand All @@ -215,7 +212,7 @@
.on(RoomEvent.ParticipantDisconnected, handleParticipantDisconnected)

// connect to room
await room.value.connect('wss://livekit.qall-dev.trapti.tech', token)
await room.value.connect('wss://livekit.qall.trap.jp', token)

Check warning on line 215 in src/composables/qall/useLiveKitSDK.ts

View check run for this annotation

Codecov / codecov/patch

src/composables/qall/useLiveKitSDK.ts#L215

Added line #L215 was not covered by tests

if (room.value.localParticipant?.permissions?.canPublish) {
await addMicTrack()
Expand Down
Loading