Fix clear history in contacts

pull/1/head
yflory 2020-02-04 11:04:52 +01:00
parent cfa4c6e7bb
commit a9f8402110
1 changed files with 1 additions and 1 deletions

View File

@ -893,7 +893,7 @@ define([
};
var clearOwnedChannel = function (ctx, id, cb) {
var channel = ctx.clients[id];
var channel = ctx.channels[id];
if (!channel) { return void cb({error: 'NO_CHANNEL'}); }
if (!ctx.store.rpc) { return void cb({error: 'RPC_NOT_READY'}); }
ctx.store.rpc.clearOwnedChannel(id, function (err) {