aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Chapters
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2026-05-06 20:49:19 +0200
committerGitHub <noreply@github.com>2026-05-06 20:49:19 +0200
commit33ed52b8ee25e1fae4763a26337b838dc9782b26 (patch)
treeee68da202f604eef267254ea8c689965098b1c3e /MediaBrowser.Controller/Chapters
parentaa96ff42e616ecf5638a8f1e2e8459b94513c528 (diff)
parentd1ab428476f961426841a0561036c59c3b93878e (diff)
Merge branch 'master' into feature/season-provider-id-from-path
Diffstat (limited to 'MediaBrowser.Controller/Chapters')
-rw-r--r--MediaBrowser.Controller/Chapters/IChapterManager.cs11
1 files changed, 9 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Chapters/IChapterManager.cs b/MediaBrowser.Controller/Chapters/IChapterManager.cs
index 25656fd625..edc20205aa 100644
--- a/MediaBrowser.Controller/Chapters/IChapterManager.cs
+++ b/MediaBrowser.Controller/Chapters/IChapterManager.cs
@@ -14,11 +14,18 @@ namespace MediaBrowser.Controller.Chapters;
public interface IChapterManager
{
/// <summary>
+ /// Gets a value indicating whether the specified item type is supported for chapter operations.
+ /// </summary>
+ /// <param name="item">The item to check.</param>
+ /// <returns><c>true</c> if the item type supports chapters; otherwise, <c>false</c>.</returns>
+ bool Supports(BaseItem item);
+
+ /// <summary>
/// Saves the chapters.
/// </summary>
- /// <param name="video">The video.</param>
+ /// <param name="item">The item.</param>
/// <param name="chapters">The set of chapters.</param>
- void SaveChapters(Video video, IReadOnlyList<ChapterInfo> chapters);
+ void SaveChapters(BaseItem item, IReadOnlyList<ChapterInfo> chapters);
/// <summary>
/// Gets a single chapter of a BaseItem on a specific index.