0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-15 03:01:37 -05:00

🐛 Fixed import and redirect uploads for Win10/Edge (#9267)

closes https://github.com/TryGhost/Ghost/issues/9236
- added `text/plain` to the allowed mime types for db and redirect uploads
This commit is contained in:
Kevin Ansfield 2017-11-22 17:30:53 +00:00 committed by GitHub
parent 9190857e71
commit 94360c8a32
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -52,7 +52,7 @@
},
"db": {
"extensions": [".json", ".zip"],
"contentTypes": ["application/octet-stream", "application/json", "application/zip", "application/x-zip-compressed"]
"contentTypes": ["text/plain", "application/octet-stream", "application/json", "application/zip", "application/x-zip-compressed"]
},
"themes": {
"extensions": [".zip"],
@ -60,7 +60,7 @@
},
"redirects": {
"extensions": [".json"],
"contentTypes": ["application/octet-stream", "application/json"]
"contentTypes": ["text/plain", "application/octet-stream", "application/json"]
}
},
"times": {