fix(jellyfin): upload artwork as binary

This commit is contained in:
edde746
2026-06-07 13:32:07 +02:00
parent 38868e0078
commit 8efd8f1dc8
3 changed files with 5 additions and 6 deletions
@@ -68,7 +68,7 @@ mixin _JellyfinMetadataEditMethods on MediaServerCacheMixin {
}) async {
final response = await _http.post(
'/Items/${_segment(itemId)}/Images/${_segment(imageType)}',
body: base64Encode(bytes),
body: bytes,
headers: {'Content-Type': contentType},
);
throwIfHttpError(response);