Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
H-Yeji committed Oct 31, 2024
1 parent 4d600f0 commit 7ec01c7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions src/views/live/live/LiveList.vue
Original file line number Diff line number Diff line change
Expand Up @@ -486,8 +486,7 @@ export default {
const token = await this.getToken(live.sessionId);
console.log(">>>>>>>>> token: " + token + " >>>>>>>>>> sessiongId" + live.sessionId);
const OV = new OpenVidu();
OV.setOpenViduServerUrl('https://api.inong.shop/openvidu');
const OV = new OpenVidu('https://api.inong.shop/openvidu');
const session = OV.initSession();
live.session = session; // ์„ธ์…˜์„ ์ €์žฅํ•ด ํ•ด์ œํ•  ์ˆ˜ ์žˆ๋„๋ก ํ•จ
Expand Down
3 changes: 1 addition & 2 deletions src/views/live/live/LiveSession.vue
Original file line number Diff line number Diff line change
Expand Up @@ -160,8 +160,7 @@ export default {
methods: {
async joinSession(sessionId) {
console.log("ํ™”๋ฉด๋“ค์–ด์˜ด sessionId: ", sessionId);
this.OV = new OpenVidu();
this.OV.setOpenViduServerUrl('https://api.inong.shop/openvidu');
this.OV = new OpenVidu('https://api.inong.shop/openvidu');
this.session = this.OV.initSession();
// ์ŠคํŠธ๋ฆผ ์ƒ์„ฑ ๋ฐ ์ œ๊ฑฐ ์ฒ˜๋ฆฌ
Expand Down

0 comments on commit 7ec01c7

Please sign in to comment.