mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 07:43:18 -04:00
fix: change mime type for msg file
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
This commit is contained in:
parent
6ab3b061d3
commit
1081c4aaa3
2 changed files with 2 additions and 2 deletions
|
|
@ -240,7 +240,7 @@ class RepairMimeTypes implements IRepairStep {
|
|||
private function introduceEmlAndMsgFormatType() {
|
||||
$updatedMimetypes = [
|
||||
'eml' => 'message/rfc822',
|
||||
'msg' => 'application/x-ole-storage',
|
||||
'msg' => 'application/vnd.ms-outlook',
|
||||
];
|
||||
|
||||
return $this->updateMimetypes($updatedMimetypes);
|
||||
|
|
|
|||
|
|
@ -123,7 +123,7 @@
|
|||
"mpeg": ["video/mpeg"],
|
||||
"mpg": ["video/mpeg"],
|
||||
"mpo": ["image/jpeg"],
|
||||
"msg": ["application/x-ole-storage", "text/plain"],
|
||||
"msg": ["application/vnd.ms-outlook"],
|
||||
"msi": ["application/x-msi"],
|
||||
"mt2s": ["video/MP2T"],
|
||||
"mts": ["video/MP2T"],
|
||||
|
|
|
|||
Loading…
Reference in a new issue