author | Michael Krelin <hacker@klever.net> | 2014-06-29 19:56:49 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2014-06-29 20:48:23 (UTC) |
commit | d21898d430781387bc128f83e6f8aead1149a4e5 (patch) (side-by-side diff) | |
tree | 15809c4544128bd8a5723cdf96f2b066928edcba /backend | |
parent | a90f522c1e06149420a14100f34b252d7b1119c4 (diff) | |
download | clipperz-d21898d430781387bc128f83e6f8aead1149a4e5.zip clipperz-d21898d430781387bc128f83e6f8aead1149a4e5.tar.gz clipperz-d21898d430781387bc128f83e6f8aead1149a4e5.tar.bz2 |
fix a typo in session store implementation
-rw-r--r-- | backend/node/src/clipperz.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backend/node/src/clipperz.js b/backend/node/src/clipperz.js index c51b0bc..5b4df0a 100644 --- a/backend/node/src/clipperz.js +++ b/backend/node/src/clipperz.js @@ -35,13 +35,13 @@ function clipperz_store(PG) { ) }; rv.prototype.length = function(cb) { PG.Q( "SELECT count(*) AS c FROM clipperz.thesession", function(e,r) { cb(e,e?null:r.rows[0].c); } ) }; - rv.prototype.length = function(cb) { PQ.Q( + rv.prototype.clear = function(cb) { PQ.Q( "DELETE FROM clipperz.thesession", cb ) }; rv.prototype.__proto__ = express_store.prototype; return rv; } |