Browse Source

fix cannot parse JSON for attachments

pull/1469/head
Unknwon 9 years ago
parent
commit
17f3e840ec
  1. 2
      routers/repo/issue.go

2
routers/repo/issue.go

@ -11,6 +11,7 @@ import (
"io/ioutil"
"net/http"
"net/url"
"os"
"strings"
"time"
@ -724,6 +725,7 @@ func uploadFiles(ctx *middleware.Context, issueId, commentId int64) {
return
}
os.MkdirAll(setting.AttachmentPath, os.ModePerm)
out, err := ioutil.TempFile(setting.AttachmentPath, "attachment_")
if err != nil {

Loading…
Cancel
Save