Merge pull request #21739 from owncloud/issue_21110

Fix bug issue 21110
This commit is contained in:
Thomas Müller 2016-01-15 20:15:03 +01:00
commit 3a9dbc88ec
1 changed files with 1 additions and 25 deletions

View File

@ -449,36 +449,12 @@ OCA.External.StatusManager.Utils = {
} }
switch (backend) { switch (backend) {
case 'smb': case 'windows_network_drive':
icon = OC.imagePath('windows_network_drive', 'folder-windows'); icon = OC.imagePath('windows_network_drive', 'folder-windows');
break; break;
case 'sharepoint': case 'sharepoint':
icon = OC.imagePath('sharepoint', 'folder-sharepoint'); icon = OC.imagePath('sharepoint', 'folder-sharepoint');
break; break;
case 'amazons3':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'dav':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'dropbox':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'ftp':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'google':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'owncloud':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'sftp':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
case 'swift':
icon = OC.imagePath('core', 'filetypes/folder-external');
break;
} }
return icon; return icon;