aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShadowghost <Ghost_of_Stone@web.de>2026-02-21 22:56:53 +0100
committerShadowghost <Ghost_of_Stone@web.de>2026-02-21 22:56:53 +0100
commitd156e04c9a2b16d38aede38f0de773a4d128e48f (patch)
treea9c546512088073efef087ee5fa5630cade85c82
parent97340edf028ce830c89199ba00fcd3a953215a81 (diff)
Fix Skipping
-rw-r--r--src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/ImageDataArrayConverter.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/ImageDataArrayConverter.cs b/src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/ImageDataArrayConverter.cs
index cb5ea1e684..ceb743f795 100644
--- a/src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/ImageDataArrayConverter.cs
+++ b/src/Jellyfin.LiveTv/Listings/SchedulesDirectDtos/ImageDataArrayConverter.cs
@@ -32,7 +32,7 @@ public sealed class ImageDataArrayConverter : JsonConverter<IReadOnlyList<ImageD
}
// Not an array (string error, null, object, etc.) — skip and return empty.
- reader.Skip();
+ reader.TrySkip();
return [];
}