mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-22 01:54:42 +01:00
Remove the unused arg
This commit is contained in:
@@ -42,7 +42,7 @@ namespace Emby.Server.Implementations.Library
|
||||
return _closeFn();
|
||||
}
|
||||
|
||||
public Stream GetStream(bool seekNearEnd)
|
||||
public Stream GetStream()
|
||||
{
|
||||
throw new NotSupportedException();
|
||||
}
|
||||
|
||||
@@ -95,7 +95,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts
|
||||
return Task.CompletedTask;
|
||||
}
|
||||
|
||||
public Stream GetStream(bool seekNearEnd = true)
|
||||
public Stream GetStream()
|
||||
{
|
||||
var stream = GetInputStream(TempFilePath, AsyncFile.UseAsyncIO);
|
||||
bool seekFile = (DateTime.UtcNow - DateOpened).TotalSeconds > 10;
|
||||
|
||||
Reference in New Issue
Block a user