diff options
author | Valery Piashchynski <[email protected]> | 2020-03-21 01:03:13 +0300 |
---|---|---|
committer | Valery Piashchynski <[email protected]> | 2020-03-21 01:03:13 +0300 |
commit | 314b161695daae7dfa8739afb1865a3be5ff53ca (patch) | |
tree | c1342d6c7a1f9ab0f786c2a4572ac0d0e2b818df /service/http/uploads.go | |
parent | 96e6686c5fa55e5b055fe3d7a4635e272e69c3ac (diff) |
Update GHA, go1.14 vendored mode
Update Makefile, add go vendor (go 1.14 + php hack)
Update usage of new json package
Diffstat (limited to 'service/http/uploads.go')
-rw-r--r-- | service/http/uploads.go | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/service/http/uploads.go b/service/http/uploads.go index 15522503..39a9eaf2 100644 --- a/service/http/uploads.go +++ b/service/http/uploads.go @@ -42,7 +42,8 @@ type Uploads struct { // MarshalJSON marshal tree tree into JSON. func (u *Uploads) MarshalJSON() ([]byte, error) { - return json.Marshal(u.tree) + j := json.ConfigCompatibleWithStandardLibrary + return j.Marshal(u.tree) } // Open moves all uploaded files to temp directory, return error in case of issue with temp directory. File errors |