Skip to content

Commit

Permalink
@Natim review
Browse files Browse the repository at this point in the history
  • Loading branch information
almet committed Feb 16, 2015
1 parent 25123c8 commit 0545d70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion loop/storage/redis.js
Original file line number Diff line number Diff line change
Expand Up @@ -702,7 +702,7 @@ RedisStorage.prototype = {

this._client.del('call.' + callId, function(err, result) {
if (err) return callback(err);
callback(null, parseInt(result) !== 0);
callback(null, parseInt(result, 10) !== 0);
});
},

Expand Down

0 comments on commit 0545d70

Please sign in to comment.