diff --git a/ipn/localapi/localapi.go b/ipn/localapi/localapi.go index d817ec56c..acfff428f 100644 --- a/ipn/localapi/localapi.go +++ b/ipn/localapi/localapi.go @@ -687,6 +687,7 @@ func (h *Handler) serveFiles(w http.ResponseWriter, r *http.Request) { } defer rc.Close() w.Header().Set("Content-Length", fmt.Sprint(size)) + w.Header().Set("Content-Type", "application/octet-stream") io.Copy(w, rc) }