NIFI-1539: - Comparing octet stream content type by using starts with and ignores case.

This commit is contained in:
Matt Gilman 2016-02-25 09:43:25 -05:00
parent fc92441981
commit 0d13de0cf3
1 changed files with 1 additions and 1 deletions

View File

@ -154,7 +154,7 @@ public class ContentViewerController extends HttpServlet {
// when standalone and we don't know the type is null as we were able to directly access the content bypassing the rest endpoint,
// when clustered and we don't know the type set to octet stream since the content was retrieved from the node's rest endpoint
if (downloadableContent.getType() == null || downloadableContent.getType().equals(MediaType.OCTET_STREAM.toString())) {
if (downloadableContent.getType() == null || StringUtils.startsWithIgnoreCase(downloadableContent.getType(), MediaType.OCTET_STREAM.toString())) {
// attempt to detect the content stream if we don't know what it is ()
final DefaultDetector detector = new DefaultDetector();