1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

Fix serverConnection not defined in ServerConnection.findByLocalId

This commit is contained in:
Alexandre Iooss 2021-04-24 14:51:14 +02:00 committed by Juliusz Chroboczek
parent 170f510adc
commit 4db8279016

View file

@ -410,14 +410,15 @@ ServerConnection.prototype.request = function(what) {
* @param {string} localId
* @returns {Stream}
*/
ServerConnection.prototype.findByLocalId = function(localId) {
if(!localId)
return null;
for(let id in serverConnection.up) {
let s = serverConnection.up[id];
if(s.localId == localId)
let sc = this;
for(let id in sc.up) {
let s = sc.up[id];
if(s.localId === localId)
return s;
}
return null;