mirror of https://github.com/xwiki-labs/cryptpad
Fix RPC command
This commit is contained in:
parent
6655f493e0
commit
4079f1bfdb
|
@ -46,7 +46,7 @@ const AUTHENTICATED_CALLS = [
|
|||
'OWNED_UPLOAD_COMPLETE',
|
||||
'UPLOAD_CANCEL',
|
||||
'EXPIRE_SESSION',
|
||||
'TRIM_OWNED_CHANNEL_HISTORY',
|
||||
'TRIM_HISTORY',
|
||||
'CLEAR_OWNED_CHANNEL',
|
||||
'REMOVE_OWNED_CHANNEL',
|
||||
'REMOVE_PINS',
|
||||
|
|
|
@ -105,6 +105,8 @@ define([
|
|||
return void cb({error: 'EINVAL'});
|
||||
}
|
||||
|
||||
if (!obj.length) { return; }
|
||||
|
||||
hash = obj[0].hash;
|
||||
var messages = obj.map(function(data) {
|
||||
return data.msg;
|
||||
|
@ -161,6 +163,7 @@ define([
|
|||
return;
|
||||
}
|
||||
size += obj.size;
|
||||
if (!obj.hash) { return; }
|
||||
res.push({
|
||||
channel: channel,
|
||||
hash: obj.hash
|
||||
|
@ -188,7 +191,9 @@ define([
|
|||
|
||||
nThen(function (waitFor) {
|
||||
channels.forEach(function (obj) {
|
||||
console.warn(obj); // XXX
|
||||
rpc.trimHistory(obj, waitFor(function (err) {
|
||||
console.error(obj.channel, arguments); // XXX
|
||||
if (err) {
|
||||
warning.push(err);
|
||||
return;
|
||||
|
|
Loading…
Reference in New Issue