From 1e28c2d949b4d40aa3f5c8ca7190174133532225 Mon Sep 17 00:00:00 2001 From: Alex Kocharin Date: Sun, 7 Sep 2014 01:20:28 +0400 Subject: [PATCH] fix double fs.closing + EBADF error --- lib/local-storage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/local-storage.js b/lib/local-storage.js index 7a44c1589..e7276d1f6 100644 --- a/lib/local-storage.js +++ b/lib/local-storage.js @@ -252,8 +252,8 @@ Storage.prototype.add_tags = function(name, tags, callback) { } utils.tag_version(data, tags[t], t, self.config) - cb() } + cb() }, callback) }