aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-03 00:15:59 -0500
committerLuke Pulverenti <luke.pulverenti@gmail.com>2017-01-03 00:15:59 -0500
commit60666191387b0ebdb12d2fb7b18018a2cc922087 (patch)
tree051fac59cc6b8871042b27eaea52d8897d71551e /Emby.Server.Implementations
parent4c08d26ad43de931223cf349729d7cf57e22bbc1 (diff)
handle bitrate overflow
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/Sync/SyncHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Sync/SyncHelper.cs b/Emby.Server.Implementations/Sync/SyncHelper.cs
index da475f003..7fe703796 100644
--- a/Emby.Server.Implementations/Sync/SyncHelper.cs
+++ b/Emby.Server.Implementations/Sync/SyncHelper.cs
@@ -4,7 +4,7 @@ namespace Emby.Server.Implementations.Sync
{
public class SyncHelper
{
- public static int? AdjustBitrate(int? profileBitrate, string quality)
+ public static long? AdjustBitrate(long? profileBitrate, string quality)
{
if (profileBitrate.HasValue)
{