summaryrefslogtreecommitdiffstats
path: root/apps/files
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2013-11-06 06:39:48 -0800
committerVincent Petry <pvince81@owncloud.com>2013-11-06 06:39:48 -0800
commit6b6a46589ef9dbd2646327e85f0e8c78fde302ae (patch)
tree84d4d1ba4e377bb53d8c1902ab9fcaa9a44e19a7 /apps/files
parent6e47828b45d819d084fe18b99f65f4533d786503 (diff)
parent5d698b72fc303ba6d6049fd9dae947a290d1d0b2 (diff)
downloadnextcloud-server-6b6a46589ef9dbd2646327e85f0e8c78fde302ae.tar.gz
nextcloud-server-6b6a46589ef9dbd2646327e85f0e8c78fde302ae.zip
Merge pull request #5717 from owncloud/files-foldericonforhomestorage
Fixed folder icon for home storage
Diffstat (limited to 'apps/files')
-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');
}
}