From cd221881b66d8d12fd48633533f807851a1d3e5d Mon Sep 17 00:00:00 2001 From: JBYoshi <12983479+JBYoshi@users.noreply.github.com> Date: Mon, 18 Feb 2019 15:52:05 -0600 Subject: [PATCH] Make IPv4 and IPv6 localhost connections use the same room --- server/index.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/index.js b/server/index.js index 4c02151..36a0f62 100644 --- a/server/index.js +++ b/server/index.js @@ -158,6 +158,10 @@ class Peer { } else { this.ip = request.connection.remoteAddress; } + // IPv4 and IPv6 use different values to refer to localhost + if (this.ip == '::1' || this.ip == '::ffff:127.0.0.1') { + this.ip = '127.0.0.1'; + } } _setPeerId(request) {