Fix MIME type (#15162)

Signed-off-by: Michael Lobstein <michael.lobstein@gmail.com>
This commit is contained in:
mlobstein 2023-07-04 14:35:35 -05:00 committed by GitHub
parent 472db7a87f
commit 4775ad2a0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -1372,7 +1372,7 @@ public class NuvoHandler extends BaseThingHandler implements NuvoMessageEventLis
state = new QuantityType<Time>(Integer.parseInt(value) / 10, NuvoHandler.API_SECOND_UNIT);
break;
case CHANNEL_ALBUM_ART:
state = new RawType(bytes, RawType.DEFAULT_MIME_TYPE);
state = new RawType(bytes, "image/jpeg");
break;
default:
break;