mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Add application/octet-stream to allowed types for theme uploads (#7382)
closes #7292 (again) - fix more uploads
This commit is contained in:
parent
774a662fb2
commit
2b07f7a15b
1 changed files with 1 additions and 1 deletions
|
@ -282,7 +282,7 @@ ConfigManager.prototype.set = function (config) {
|
|||
},
|
||||
themes: {
|
||||
extensions: ['.zip'],
|
||||
contentTypes: ['application/zip', 'application/x-zip-compressed']
|
||||
contentTypes: ['application/zip', 'application/x-zip-compressed', 'application/octet-stream']
|
||||
}
|
||||
},
|
||||
deprecatedItems: ['updateCheck', 'mail.fromaddress'],
|
||||
|
|
Loading…
Add table
Reference in a new issue