fixed ip:recent weird

This commit is contained in:
barisusakli
2014-08-11 13:47:24 -04:00
parent c991997552
commit e137baccd9

View File

@@ -2,6 +2,7 @@
module.exports = function(redisClient, module) {
module.sortedSetAdd = function(key, score, value, callback) {
callback = callback || function() {};
redisClient.zadd(key, score, value, callback);
};