Rename SQL extension methods

This commit is contained in:
cvium
2021-05-16 19:05:56 +02:00
parent 652909e8a5
commit be4aeb5c2c
3 changed files with 28 additions and 28 deletions

View File

@@ -370,12 +370,12 @@ namespace Emby.Server.Implementations.Data
userData.LastPlayedDate = lastPlayedDate;
}
if (reader.TryGetInt(8, out var audioStreamIndex))
if (reader.TryGetInt32(8, out var audioStreamIndex))
{
userData.AudioStreamIndex = audioStreamIndex;
}
if (reader.TryGetInt(9, out var subtitleStreamIndex))
if (reader.TryGetInt32(9, out var subtitleStreamIndex))
{
userData.SubtitleStreamIndex = subtitleStreamIndex;
}