fix some critical errors in the trim history storage api

pull/1/head
ansuz 2020-02-03 14:23:31 -05:00
parent 779e817443
commit e3269df7f0
1 changed files with 6 additions and 1 deletions

View File

@ -955,7 +955,9 @@ var trimChannel = function (env, channelName, hash, _cb) {
var handler = function (msgObj, readMore, abort) {
if (ABORT) { return void abort(); }
// the first message might be metadata... ignore it if so
if (i++ === 0 && msgObj.buff.indexOf('{') === 0) { return; }
if (i++ === 0 && msgObj.buff.indexOf('{') === 0) {
return readMore();
}
if (retain) {
// if this flag is set then you've already found
@ -973,6 +975,9 @@ var trimChannel = function (env, channelName, hash, _cb) {
if (msgHash === hash) {
// everything from this point on should be retained
retain = true;
return void tempStream.write(msgObj.buff, function () {
readMore();
});
}
};