1
Fork 0

Fix usage of serverConnection in protocol.js

serverConnection is the global value in galene.js.
This commit is contained in:
Jeroen van Veen 2022-08-29 20:06:01 +02:00 committed by Juliusz Chroboczek
parent c5e5455e47
commit a21134d310
1 changed files with 5 additions and 5 deletions

View File

@ -1790,7 +1790,7 @@ TransferredFile.prototype.receive = async function() {
throw new Error('Receiving in wrong direction'); throw new Error('Receiving in wrong direction');
if(f.pc) if(f.pc)
throw new Error('Download already in progress'); throw new Error('Download already in progress');
let pc = new RTCPeerConnection(serverConnection.getRTCConfiguration()); let pc = new RTCPeerConnection(f.sc.getRTCConfiguration());
if(!pc) { if(!pc) {
let err = new Error("Couldn't create peer connection"); let err = new Error("Couldn't create peer connection");
f.fail(err); f.fail(err);
@ -1807,7 +1807,7 @@ TransferredFile.prototype.receive = async function() {
} }
}; };
pc.onicecandidate = function(e) { pc.onicecandidate = function(e) {
serverConnection.userMessage('filetransfer', f.userid, { f.sc.userMessage('filetransfer', f.userid, {
type: 'downice', type: 'downice',
id: f.id, id: f.id,
candidate: e.candidate, candidate: e.candidate,
@ -1851,7 +1851,7 @@ TransferredFile.prototype.answer = async function(sdp) {
throw new Error('Sending file in wrong direction'); throw new Error('Sending file in wrong direction');
if(f.pc) if(f.pc)
throw new Error('Transfer already in progress'); throw new Error('Transfer already in progress');
let pc = new RTCPeerConnection(serverConnection.getRTCConfiguration()); let pc = new RTCPeerConnection(f.sc.getRTCConfiguration());
if(!pc) { if(!pc) {
let err = new Error("Couldn't create peer connection"); let err = new Error("Couldn't create peer connection");
f.fail(err); f.fail(err);
@ -1862,7 +1862,7 @@ TransferredFile.prototype.answer = async function(sdp) {
f.candidates = []; f.candidates = [];
pc.onicecandidate = function(e) { pc.onicecandidate = function(e) {
serverConnection.userMessage('filetransfer', f.userid, { f.sc.userMessage('filetransfer', f.userid, {
type: 'upice', type: 'upice',
id: f.id, id: f.id,
candidate: e.candidate, candidate: e.candidate,
@ -1910,7 +1910,7 @@ TransferredFile.prototype.answer = async function(sdp) {
if(!answer) if(!answer)
throw new Error("Couldn't create answer"); throw new Error("Couldn't create answer");
await pc.setLocalDescription(answer); await pc.setLocalDescription(answer);
serverConnection.userMessage('filetransfer', f.userid, { f.sc.userMessage('filetransfer', f.userid, {
type: 'answer', type: 'answer',
id: f.id, id: f.id,
sdp: pc.localDescription.sdp, sdp: pc.localDescription.sdp,