Fixed clamped value being replaced

This commit is contained in:
rzk3 2023-02-16 10:10:34 -05:00
parent 750feaf693
commit 9c5d08f4d1
2 changed files with 8 additions and 4 deletions

View File

@ -134,8 +134,10 @@ namespace MediaBrowser.Model.Session
{
_playbackSpeed = 0.1;
}
_playbackSpeed = value;
else
{
_playbackSpeed = value;
}
}
}
}

View File

@ -96,8 +96,10 @@ namespace MediaBrowser.Model.Session
{
_playbackSpeed = 0.1;
}
_playbackSpeed = value;
else
{
_playbackSpeed = value;
}
}
}
}