From fc04118bf9d0f66318039899d5ca1363f68d86c8 Mon Sep 17 00:00:00 2001 From: Jason Arends Date: Fri, 3 Oct 2025 10:41:03 -0500 Subject: [PATCH] Emby: accept non-File protocols for Movie items (only require MediaSources present) (#2483) --- ErsatzTV.Infrastructure/Emby/EmbyApiClient.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ErsatzTV.Infrastructure/Emby/EmbyApiClient.cs b/ErsatzTV.Infrastructure/Emby/EmbyApiClient.cs index 6e54771ef..646623092 100644 --- a/ErsatzTV.Infrastructure/Emby/EmbyApiClient.cs +++ b/ErsatzTV.Infrastructure/Emby/EmbyApiClient.cs @@ -379,7 +379,7 @@ public class EmbyApiClient : IEmbyApiClient { try { - if (item.MediaSources.Any(ms => ms.Protocol != "File")) + if (item.MediaSources is null || item.MediaSources.Count == 0) { return None; }