mirror of
https://github.com/mollersuite/monofile.git
synced 2024-11-21 21:36:26 -08:00
young man, KILL YOURSELF!!
This commit is contained in:
parent
6fd5177c7a
commit
aaa1d64f1f
|
@ -344,12 +344,16 @@ export default class Files {
|
||||||
return "__ERR"
|
return "__ERR"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let ord:number[] = []
|
||||||
|
|
||||||
let dataStream = new Readable({
|
let dataStream = new Readable({
|
||||||
read(){
|
read(){
|
||||||
console.log(`${uploadId}: Getting chunk ${position+1}/${attachments.length}`)
|
console.log(`${uploadId}: Getting chunk ${position+1}/${attachments.length}`)
|
||||||
|
let gC = position+1
|
||||||
getNextChunk().then(async (nextChunk) => {
|
getNextChunk().then(async (nextChunk) => {
|
||||||
console.log(`${uploadId}: Got chunk ${position}/${attachments.length}. It is ${nextChunk ? "not " : ""}null.`)
|
ord.push(gC)
|
||||||
|
console.log(`${uploadId}: Got chunk ${gC}/${attachments.length}, next up ${position}. It is ${nextChunk ? "not " : ""}null. Current order : ${ord.map(e => e.toString()).join(" ")}`)
|
||||||
if (nextChunk == "__ERR") {this.destroy(new Error("file read error")); return}
|
if (nextChunk == "__ERR") {this.destroy(new Error("file read error")); return}
|
||||||
let response = this.push(nextChunk)
|
let response = this.push(nextChunk)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue