From d19b704bb8c2023fab12627602669608d319051c Mon Sep 17 00:00:00 2001 From: ansuz Date: Fri, 14 Jun 2019 13:38:09 +0200 Subject: [PATCH] fix an inverted boolean --- storage/file.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/file.js b/storage/file.js index 717f4104b..99272fc6f 100644 --- a/storage/file.js +++ b/storage/file.js @@ -219,7 +219,7 @@ var channelExists = function (filepath, channelName, cb) { if (err) { if (err.code === 'ENOENT') { // no, the file doesn't exist - return void cb(void 0, true); + return void cb(void 0, false); } return void cb(err); }