mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-12-16 05:53:03 +03:00
Apply review suggestions
This commit is contained in:
@@ -450,7 +450,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
prefix = "bluray";
|
||||
}
|
||||
|
||||
return EncodingUtils.GetInputArgument(prefix, new List<string>() { inputFile }, mediaSource.Protocol);
|
||||
return EncodingUtils.GetInputArgument(prefix, new[] { inputFile }, mediaSource.Protocol);
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@@ -458,7 +458,7 @@ namespace MediaBrowser.MediaEncoding.Encoder
|
||||
{
|
||||
const string Prefix = "file";
|
||||
|
||||
return EncodingUtils.GetInputArgument(Prefix, new List<string> { inputFile }, MediaProtocol.File);
|
||||
return EncodingUtils.GetInputArgument(Prefix, new[] { inputFile }, MediaProtocol.File);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user