Send Upload Complete Notification for concatenations
This commit is contained in:
parent
7ac6cf12c7
commit
13c27e1c19
|
@ -269,6 +269,11 @@ func (handler *UnroutedHandler) PostFile(w http.ResponseWriter, r *http.Request)
|
||||||
handler.sendError(w, r, err)
|
handler.sendError(w, r, err)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if handler.config.NotifyCompleteUploads {
|
||||||
|
info.ID = id
|
||||||
|
handler.CompleteUploads <- info
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
url := handler.absFileURL(r, id)
|
url := handler.absFileURL(r, id)
|
||||||
|
|
Loading…
Reference in New Issue