🐛 Fix cannot identify the multipart is completed upload
This commit is contained in:
parent
e297b1b4ea
commit
626fe47bb4
@ -113,7 +113,10 @@ func uploadFragmentChunk(c *fiber.Ctx) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if !isAllUploaded {
|
if !isAllUploaded {
|
||||||
return c.JSON(meta)
|
return c.JSON(fiber.Map{
|
||||||
|
"is_finished": false,
|
||||||
|
"fragment": meta,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
// Merge & post-upload
|
// Merge & post-upload
|
||||||
@ -134,5 +137,8 @@ func uploadFragmentChunk(c *fiber.Ctx) error {
|
|||||||
services.PublishAnalyzeTask(attachment)
|
services.PublishAnalyzeTask(attachment)
|
||||||
}
|
}
|
||||||
|
|
||||||
return c.JSON(meta)
|
return c.JSON(fiber.Map{
|
||||||
|
"is_finished": true,
|
||||||
|
"attachment": attachment,
|
||||||
|
})
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user