From: Luigi Pinca Date: Tue, 19 Nov 2013 16:13:59 +0000 (+0100) Subject: bumped node_redis to version 0.9.x X-Git-Url: https://git.saalbach.dev/?a=commitdiff_plain;h=9d391db1761bbda6792211e07d825f1a09b17a72;p=binbsis50.git bumped node_redis to version 0.9.x --- diff --git a/lib/user.js b/lib/user.js index 593a032..0f79218 100644 --- a/lib/user.js +++ b/lib/user.js @@ -8,16 +8,16 @@ module.exports = function(username, email, salt, hash, joindate) { this.salt = salt; this.password = hash; this.joindate = joindate; - this.totpoints = '0'; - this.bestscore = '0'; - this.golds = '0'; - this.silvers = '0'; - this.bronzes = '0'; - this.bestguesstime = '30000'; - this.worstguesstime = '0'; - this.totguesstime = '0'; - this.guessed = '0'; - this.victories = '0'; - this.secondplaces = '0'; - this.thirdplaces = '0'; + this.totpoints = 0; + this.bestscore = 0; + this.golds = 0; + this.silvers = 0; + this.bronzes = 0; + this.bestguesstime = 30000; + this.worstguesstime = 0; + this.totguesstime = 0; + this.guessed = 0; + this.victories = 0; + this.secondplaces = 0; + this.thirdplaces = 0; }; diff --git a/package.json b/package.json index e14e704..10f71e9 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "express": "3.4.x", "jade": "0.35.x", "nodemailer": "0.5.x", - "redis": "0.7.x", + "redis": "0.9.x", "socket.io": "0.9.x" }, "devDependencies": { @@ -26,5 +26,5 @@ "start": "node app.js" }, "subdomain": "binb", - "version": "0.3.6-12" + "version": "0.3.6-13" }