1
0
Fork 0
mirror of https://codeberg.org/forgejo/forgejo.git synced 2024-11-22 08:42:32 -05:00

fix cannot parse JSON for attachments

This commit is contained in:
Unknwon 2015-08-11 12:44:14 +08:00
parent f183c855d1
commit 17f3e840ec
2 changed files with 5 additions and 3 deletions

View file

@ -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 {