summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-11-06 15:11:14 +0100
committerVincent Petry <pvince81@owncloud.com>2013-11-06 15:11:14 +0100
commit5d698b72fc303ba6d6049fd9dae947a290d1d0b2 (patch)
tree84d4d1ba4e377bb53d8c1902ab9fcaa9a44e19a7
parent6e47828b45d819d084fe18b99f65f4533d786503 (diff)
downloadnextcloud-server-5d698b72fc303ba6d6049fd9dae947a290d1d0b2.tar.gz
nextcloud-server-5d698b72fc303ba6d6049fd9dae947a290d1d0b2.zip
Fixed folder icon for home storage
Fixes #5713
-rw-r--r--apps/files/lib/helper.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files/lib/helper.php b/apps/files/lib/helper.php
index 7692dd67574..eaff28178ea 100644
--- a/apps/files/lib/helper.php
+++ b/apps/files/lib/helper.php
@@ -30,7 +30,7 @@ class Helper
if ($sid[0] === 'shared') {
return \OC_Helper::mimetypeIcon('dir-shared');
}
- if ($sid[0] !== 'local') {
+ if ($sid[0] !== 'local' and $sid[0] !== 'home') {
return \OC_Helper::mimetypeIcon('dir-external');
}
}