Bug 1300543 - FilterMimeTypes: Continue to filter mime types if one of them is empty. r=ahunt

MozReview-Commit-ID: GRFANWF1L2m

--HG--
extra : rebase_source : b4993fdfc01f04397de6c5a2d2729b4de023ce5f
This commit is contained in:
Sebastian Kaspari 2016-09-05 17:37:13 +02:00
Родитель f0847016ce
Коммит e730285a31
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -28,7 +28,7 @@ public class FilterMimeTypes implements Preparer {
if (TextUtils.isEmpty(mimeType)) {
// We do not have a MIME type for this icon, so we cannot know in advance if we are able
// to decode it. Let's just continue.
return;
continue;
}
if (!IconsHelper.canDecodeType(mimeType)) {