mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-10 20:32:21 +01:00
update translations
This commit is contained in:
@@ -273,7 +273,7 @@ namespace MediaBrowser.Api
|
||||
{
|
||||
if (job.Type == TranscodingJobType.Progressive)
|
||||
{
|
||||
const int timerDuration = 1000;
|
||||
const int timerDuration = 1500;
|
||||
|
||||
if (job.KillTimer == null)
|
||||
{
|
||||
|
||||
@@ -130,7 +130,7 @@ namespace MediaBrowser.Api.Playback.Progressive
|
||||
|
||||
private void CopyToInternal(Stream source, Stream destination, int bufferSize)
|
||||
{
|
||||
byte[] array = new byte[bufferSize];
|
||||
var array = new byte[bufferSize];
|
||||
int count;
|
||||
while ((count = source.Read(array, 0, array.Length)) != 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user