Skip to content

Commit

Permalink
wrong format for import
Browse files Browse the repository at this point in the history
  • Loading branch information
willwade committed Oct 29, 2024
1 parent 360d193 commit 7c8386d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions nodejs/sender-monitor/iceServers.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[
module.exports = [
{
"urls": "stun:stun.l.google.com:19302"
},
Expand All @@ -25,4 +25,4 @@
"username": "dc6707c0bdabae99498a0570",
"credential": "t0a8EBJnJrZjLTV/"
}
]
];
2 changes: 1 addition & 1 deletion nodejs/sender-monitor/webrtc.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const { io } = require("socket.io-client");
const { RTCPeerConnection, RTCSessionDescription } = require("wrtc");
const { EventEmitter } = require("events");
const faker = require("@faker-js/faker").faker;
import iceServers from "iceServers";
const iceServers = require("./iceServers");

const WEBSOCKET_URL = "wss://owd.acecentre.net";

Expand Down

0 comments on commit 7c8386d

Please sign in to comment.