diff options
Diffstat (limited to 'MediaBrowser.Common/Hex.cs')
| -rw-r--r-- | MediaBrowser.Common/Hex.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Common/Hex.cs b/MediaBrowser.Common/Hex.cs index 6c86e4e6d..b2d9aea3a 100644 --- a/MediaBrowser.Common/Hex.cs +++ b/MediaBrowser.Common/Hex.cs @@ -81,7 +81,7 @@ namespace MediaBrowser.Common break; // Unreachable } - bytes[j] = (byte)((a << 4) | b); + bytes[j] = (byte)((a * 16) | b); } return bytes; |
