Skip to content

Commit

Permalink
fix issue simplewebrtc#138
Browse files Browse the repository at this point in the history
  • Loading branch information
kixefn98425 committed Feb 1, 2023
1 parent 9dd8f99 commit 2332a02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sockets.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ var socketIO = require('socket.io'),
crypto = require('crypto');

module.exports = function (server, config) {
var io = socketIO.listen(server);
var io = socketIO.listen(server, { serveClient: false });

io.sockets.on('connection', function (client) {
client.resources = {
Expand Down

0 comments on commit 2332a02

Please sign in to comment.