summaryrefslogtreecommitdiffstats
path: root/apps/dav
diff options
context:
space:
mode:
authorDaniel Kesselberg <mail@danielkesselberg.de>2019-01-28 21:39:51 +0100
committerDaniel Kesselberg <mail@danielkesselberg.de>2019-01-28 21:41:26 +0100
commit2764173d09d9e58ca3f937072264f23d5a50b84d (patch)
treeed4a12510cd2a34331791abddd60deff1ac7f5bb /apps/dav
parent4dbef1210ccfecdafdb1d35e76bdc172c0117ba4 (diff)
downloadnextcloud-server-2764173d09d9e58ca3f937072264f23d5a50b84d.tar.gz
nextcloud-server-2764173d09d9e58ca3f937072264f23d5a50b84d.zip
Use proper mime type for ico
Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
Diffstat (limited to 'apps/dav')
-rw-r--r--apps/dav/lib/CardDAV/PhotoCache.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/dav/lib/CardDAV/PhotoCache.php b/apps/dav/lib/CardDAV/PhotoCache.php
index 3a076c52ba3..eed11f1e939 100644
--- a/apps/dav/lib/CardDAV/PhotoCache.php
+++ b/apps/dav/lib/CardDAV/PhotoCache.php
@@ -40,7 +40,7 @@ class PhotoCache {
'image/png' => 'png',
'image/jpeg' => 'jpg',
'image/gif' => 'gif',
- 'application/octet-stream' => 'ico',
+ 'image/vnd.microsoft.icon' => 'ico',
];
/** @var IAppData */