Merge pull request #1 from deftdawg/deftdawg-location-pathname-homeassistant
Update Snapdrop client to be proxy friendly.
This commit is contained in:
commit
95921ee723
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue