diff --git a/bzz/api.go b/bzz/api.go index a8ef586d3f..f2a070d25a 100644 --- a/bzz/api.go +++ b/bzz/api.go @@ -266,8 +266,8 @@ func (self *Api) Upload(lpath, index string) (string, error) { wg.Wait() } if err == nil { - //cmd := exec.Command("file", "--mime-type", "-b", entry.Path) - cmd := exec.Command("mimetype", "-b", entry.Path) + cmd := exec.Command("file", "--mime-type", "-b", entry.Path) + // cmd := exec.Command("mimetype", "-b", entry.Path) var out bytes.Buffer cmd.Stdout = &out err = cmd.Run()