Re-add direct library add
This commit is contained in:
parent
2dced8e3ce
commit
4511029dde
1 changed files with 7 additions and 0 deletions
|
@ -234,6 +234,13 @@ func (a *App) uploadHandler(w http.ResponseWriter, r *http.Request) {
|
|||
return
|
||||
}
|
||||
|
||||
if err := a.Library.Add(of); err != nil {
|
||||
err := fmt.Errorf("error adding new video: %w", err)
|
||||
log.Error(err)
|
||||
http.Error(w, err.Error(), http.StatusInternalServerError)
|
||||
return
|
||||
}
|
||||
|
||||
fmt.Fprintf(w, "Video successfully uploaded!")
|
||||
} else {
|
||||
http.Error(w, "Method Not Allowed", http.StatusMethodNotAllowed)
|
||||
|
|
Loading…
Reference in a new issue