Merge pull request #288 from deftdawg/master

Make socket location relative to location snapdrop client was served from
This commit is contained in:
RobinLinus 2021-06-04 15:40:21 +02:00 committed by GitHub
commit 0ba427c37c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -58,7 +58,7 @@ class ServerConnection {
// hack to detect if deployment or development environment // hack to detect if deployment or development environment
const protocol = location.protocol.startsWith('https') ? 'wss' : 'ws'; const protocol = location.protocol.startsWith('https') ? 'wss' : 'ws';
const webrtc = window.isRtcSupported ? '/webrtc' : '/fallback'; const webrtc = window.isRtcSupported ? '/webrtc' : '/fallback';
const url = protocol + '://' + location.host + '/server' + webrtc; const url = protocol + '://' + location.host + location.pathname + '/server' + webrtc;
return url; return url;
} }