Fixed folder icon for home storage

Fixes #5713
This commit is contained in:
Vincent Petry 2013-11-06 15:11:14 +01:00
parent 6e47828b45
commit 5d698b72fc
1 changed files with 1 additions and 1 deletions

View File

@ -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');
}
}