Fix removeOwnedChannel

This commit is contained in:
yflory 2019-08-29 11:29:50 +02:00
parent 7d33e261f8
commit 416e0cde17

View File

@ -253,7 +253,7 @@ define([
return void cb({error: 'User drive removal blocked!'}); return void cb({error: 'User drive removal blocked!'});
} }
store.rpc.removeOwnedChannel(data, function (err) { store.rpc.removeOwnedChannel(channel, function (err) {
cb({error:err}); cb({error:err});
}); });
}; };