exclude ids with invalid lengths from our list of owned documents

pull/1/head
ansuz 2021-08-10 19:53:56 +05:30
parent 59aefef2ad
commit 44688026d6
1 changed files with 4 additions and 1 deletions

View File

@ -775,7 +775,10 @@ define([
}
});
}
return list;
return list.filter(function (channel) {
if (typeof(channel) !== 'string') { return; }
return [32, 48].indexOf(channel.length) !== -1;
});
};
var removeOwnedPads = function (waitFor) {
// Delete owned pads