0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-07-02 17:38:19 +02:00

Fix undefined variable error

This commit is contained in:
David Baker 2014-09-19 11:41:49 +01:00
parent beed1ba089
commit 270825ab2a

View file

@ -429,7 +429,7 @@ angular.module('MatrixCall', [])
}
if (this.candidateSendTries > 5) {
console.log("Failed to send candidates on attempt "+ev.tries+". Giving up for now.");
console.log("Failed to send candidates on attempt "+this.candidateSendTries+". Giving up for now.");
this.candidateSendTries = 0;
return;
}