From 416e0cde17116c8c30b9de71cdbfdd3f14f282cf Mon Sep 17 00:00:00 2001 From: yflory Date: Thu, 29 Aug 2019 11:29:50 +0200 Subject: [PATCH] Fix removeOwnedChannel --- www/common/outer/async-store.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/common/outer/async-store.js b/www/common/outer/async-store.js index 2abcb1b1e..33ba50901 100644 --- a/www/common/outer/async-store.js +++ b/www/common/outer/async-store.js @@ -253,7 +253,7 @@ define([ return void cb({error: 'User drive removal blocked!'}); } - store.rpc.removeOwnedChannel(data, function (err) { + store.rpc.removeOwnedChannel(channel, function (err) { cb({error:err}); }); };