From 54a6a33c017fb50812cb8c849b50843b25fc782d Mon Sep 17 00:00:00 2001 From: JPVenson Date: Wed, 30 Oct 2024 10:31:10 +0000 Subject: [PATCH] renamed param --- .../MediaSegements/IMediaSegmentManager.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MediaBrowser.Controller/MediaSegements/IMediaSegmentManager.cs b/MediaBrowser.Controller/MediaSegements/IMediaSegmentManager.cs index 72bd1da8aa..672f27eca2 100644 --- a/MediaBrowser.Controller/MediaSegements/IMediaSegmentManager.cs +++ b/MediaBrowser.Controller/MediaSegements/IMediaSegmentManager.cs @@ -57,11 +57,11 @@ public interface IMediaSegmentManager /// /// Obtains all segments accociated with the itemId. /// - /// The . + /// The . /// filteres all media segments of the given type to be included. If null all types are included. /// When set filteres the segments to only return those that which providers are currently enabled on their library. /// An enumerator of 's. - Task> GetSegmentsAsync(BaseItem itemId, IEnumerable? typeFilter, bool filterByProvider = true); + Task> GetSegmentsAsync(BaseItem item, IEnumerable? typeFilter, bool filterByProvider = true); /// /// Gets information about any media segments stored for the given itemId.