diff --git a/CHANGES.rst b/CHANGES.rst
index 9e884e51bf4977e7b2c6c8c52aab877323ed32e6..dd188cf86a7e0579e3fbb48432135fd73c641f12 100644
--- a/CHANGES.rst
+++ b/CHANGES.rst
@@ -41,7 +41,6 @@ Webclient:
  * The recents list now differentiates between public & private rooms.
  * Fix bug where when switching between rooms the pagination flickered before
    the view jumped to the bottom of the screen.
- * Add support for password resets.
  * Add bing word support.
 
 Registration API:
diff --git a/webclient/components/matrix/matrix-call.js b/webclient/components/matrix/matrix-call.js
index 9d3a78729137743a3ededa2a32989e16f5730063..7b5d9cffef342c33715d9dce6dc24367d9031b70 100644
--- a/webclient/components/matrix/matrix-call.js
+++ b/webclient/components/matrix/matrix-call.js
@@ -537,7 +537,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;
         }