Update BifService.cs

Reversing endianness for integers in the index.bif file.  Little Endian is what we want here, so if BitConverter does NOT give us that, then we need to reverse the bytes.
This commit is contained in:
Bluebull32 2015-01-31 14:39:16 -05:00
parent f3e98dde6a
commit af9bd11568

View file

@ -155,7 +155,7 @@ namespace MediaBrowser.Api.Playback
private byte[] GetBytes(int value)
{
byte[] bytes = BitConverter.GetBytes(value);
if (BitConverter.IsLittleEndian)
if (!BitConverter.IsLittleEndian)
Array.Reverse(bytes);
return bytes;
}