Commit 6dedd762039a274d1f717b471a793b1f10b0b47d

Authored by Adhidarma Hadiwinoto
1 parent 85428dac40
Exists in master

fix forget this

Showing 1 changed file with 1 additions and 3 deletions Side-by-side Diff

... ... @@ -189,7 +189,7 @@ MatrixUtil.prototype._updateLastMessage = function(partner, msg, direction) {
189 189  
190 190 if (direction == 'incoming') {
191 191 try {
192   - _updateLastResponseTime(partner);
  192 + this._updateLastResponseTime(partner);
193 193 }
194 194 catch(e) {
195 195 logger.warn('Exception when updateLastResponseTime', {err: e});
... ... @@ -205,8 +205,6 @@ MatrixUtil.prototype._updateLastMessage = function(partner, msg, direction) {
205 205 if (direction == 'outgoing') {
206 206 return;
207 207 }
208   -
209   -
210 208 }
211 209  
212 210