diff options
| author | cvium <clausvium@gmail.com> | 2021-09-10 09:56:48 +0200 |
|---|---|---|
| committer | cvium <clausvium@gmail.com> | 2021-09-10 09:56:48 +0200 |
| commit | f3573b061c4d9eb869316ce3de320fd8803aeef8 (patch) | |
| tree | 5f688788c598f18e7c1b768568f83817b367a7f2 /MediaBrowser.Controller/Library/IDirectStreamProvider.cs | |
| parent | 1603d1928e888abeccc6a5fab2e1f13aa65eea6c (diff) | |
Remove the unused arg
Diffstat (limited to 'MediaBrowser.Controller/Library/IDirectStreamProvider.cs')
| -rw-r--r-- | MediaBrowser.Controller/Library/IDirectStreamProvider.cs | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/MediaBrowser.Controller/Library/IDirectStreamProvider.cs b/MediaBrowser.Controller/Library/IDirectStreamProvider.cs index 2939668f7..96f8b7eba 100644 --- a/MediaBrowser.Controller/Library/IDirectStreamProvider.cs +++ b/MediaBrowser.Controller/Library/IDirectStreamProvider.cs @@ -11,10 +11,9 @@ namespace MediaBrowser.Controller.Library public interface IDirectStreamProvider { /// <summary> - /// Gets the live stream, optionally seeks to the end of the file first. + /// Gets the live stream, shared streams seek to the end of the file first. /// </summary> - /// <param name="seekNearEnd">A value indicating whether to seek to the end of the file.</param> /// <returns>The stream.</returns> - Stream GetStream(bool seekNearEnd = true); + Stream GetStream(); } } |
