Send almost-full comment requests to Reddit API

This commit is contained in:
Christopher Gurnee 2022-03-12 18:38:16 +00:00
parent 456b212d5f
commit d58903f61f

View file

@ -35,7 +35,7 @@ class ChunkedQueue {
this._chunks.push([x])
}
hasFullChunk = () => this._chunks[0].length >= this._chunkSize
hasFullChunk = () => this._chunks[0].length >= this._chunkSize * 0.9
isEmpty = () => this._chunks[0].length == 0
shiftChunk() {