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:
parent
9190857e71
commit
94360c8a32
1 changed files with 2 additions and 2 deletions
|
@ -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": {
|
||||
|
|
Loading…
Add table
Reference in a new issue