Explorar el Código

Add newline between URLs for multi-upload (#156)

tags/v1.0.0
Lee Burton hace 5 años
committed by Andrea Spacca
padre
commit
fb32a2a85a
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      server/handlers.go

+ 1
- 1
server/handlers.go Ver fichero

@@ -300,7 +300,7 @@ func (s *Server) postHandler(w http.ResponseWriter, r *http.Request) {
}

relativeURL, _ := url.Parse(path.Join(token, filename))
fmt.Fprint(w, getURL(r).ResolveReference(relativeURL).String())
fmt.Fprintln(w, getURL(r).ResolveReference(relativeURL).String())
}
}
}


Cargando…
Cancelar
Guardar