mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-02 12:22:52 +01:00
Enable nullable reference types for Emby.Server.Implementations
This commit is contained in:
@@ -9,7 +9,7 @@ namespace MediaBrowser.Model.IO
|
||||
{
|
||||
public interface IStreamHelper
|
||||
{
|
||||
Task CopyToAsync(Stream source, Stream destination, int bufferSize, Action onStarted, CancellationToken cancellationToken);
|
||||
Task CopyToAsync(Stream source, Stream destination, int bufferSize, Action? onStarted, CancellationToken cancellationToken);
|
||||
|
||||
Task CopyToAsync(Stream source, Stream destination, int bufferSize, int emptyReadLimit, CancellationToken cancellationToken);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user