Fix MIME type (#15161)

Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com>
This commit is contained in:
mlobstein 2023-07-04 14:34:43 -05:00 committed by GitHub
parent d83084849d
commit 472db7a87f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -413,7 +413,7 @@ public enum KaleidescapeMessageHandler {
int httpStatus = contentResponse.getStatus();
if (httpStatus == OK_200) {
handler.updateDetailChannel(DETAIL_COVER_ART,
new RawType(contentResponse.getContent(), RawType.DEFAULT_MIME_TYPE));
new RawType(contentResponse.getContent(), "image/jpeg"));
} else {
handler.updateDetailChannel(DETAIL_COVER_ART, UnDefType.NULL);
}