Merge pull request #5717 from owncloud/files-foldericonforhomestorage
Fixed folder icon for home storage
This commit is contained in:
commit
6b6a46589e
|
@ -30,7 +30,7 @@ class Helper
|
||||||
if ($sid[0] === 'shared') {
|
if ($sid[0] === 'shared') {
|
||||||
return \OC_Helper::mimetypeIcon('dir-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');
|
return \OC_Helper::mimetypeIcon('dir-external');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue