Merge pull request #22369 from owncloud/fix-bmp-support

Fix BMP support
This commit is contained in:
Thomas Müller 2016-02-14 11:38:40 +01:00
commit ac367b97f0
1 changed files with 1 additions and 0 deletions

View File

@ -257,6 +257,7 @@ class OC_Image implements \OCP\IImage {
$imageType = IMAGETYPE_XBM;
break;
case 'image/bmp':
case 'image/x-ms-bmp':
$imageType = IMAGETYPE_BMP;
break;
default: