diff options
| author | ThunderClapLP <59509654+ThunderClapLP@users.noreply.github.com> | 2025-06-10 15:45:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-06-10 07:45:09 -0600 |
| commit | 6b5ce934b3ad522cc73b702538026ec7c99103cd (patch) | |
| tree | b0e8bdda983c6324c9e342e3c6edd01f8043c9e6 /MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs | |
| parent | 7174bb6a93e77031da9a7130305dd3c1e1426fe9 (diff) | |
Fix existing media segments not being handled on scan (#14218)
Diffstat (limited to 'MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs')
| -rw-r--r-- | MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs b/MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs index 720c607f1..4f13a7ecc 100644 --- a/MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs +++ b/MediaBrowser.Controller/MediaSegments/IMediaSegmentManager.cs @@ -20,10 +20,10 @@ public interface IMediaSegmentManager /// </summary> /// <param name="baseItem">The Item to evaluate.</param> /// <param name="libraryOptions">The library options.</param> - /// <param name="overwrite">If set, will remove existing segments and replace it with new ones otherwise will check for existing segments and if found any, stops.</param> + /// <param name="forceOverwrite">If set, will force to remove existing segments and replace it with new ones otherwise will check for existing segments and if found any that should not be deleted, stops.</param> /// <param name="cancellationToken">The cancellation token.</param> /// <returns>A task that indicates the Operation is finished.</returns> - Task RunSegmentPluginProviders(BaseItem baseItem, LibraryOptions libraryOptions, bool overwrite, CancellationToken cancellationToken); + Task RunSegmentPluginProviders(BaseItem baseItem, LibraryOptions libraryOptions, bool forceOverwrite, CancellationToken cancellationToken); /// <summary> /// Returns if this item supports media segments. |
