Handle null without exception

This commit is contained in:
Evan Harris
2019-07-08 02:57:41 -05:00
parent 42bced139f
commit 50b3fd382c
@@ -628,10 +628,10 @@ public class CoverArtController implements LastModified {
try { try {
in = getImageInputStreamForVideo(mediaFile, width, height, offset); in = getImageInputStreamForVideo(mediaFile, width, height, offset);
BufferedImage result = ImageIO.read(in); BufferedImage result = ImageIO.read(in);
if (result == null) { if (result != null) {
throw new NullPointerException();
}
return result; return result;
}
LOG.warn("Failed to process cover art for " + mediaFile + ": {}", result);
} catch (Throwable x) { } catch (Throwable x) {
LOG.warn("Failed to process cover art for " + mediaFile + ": " + x, x); LOG.warn("Failed to process cover art for " + mediaFile + ": " + x, x);
} finally { } finally {