More warning fixes

This commit is contained in:
Bond_009
2019-09-25 13:24:39 +02:00
committed by Bond_009
parent d9a03c9bb1
commit 016be02cd6
9 changed files with 105 additions and 148 deletions

View File

@@ -116,7 +116,7 @@ namespace Emby.Server.Implementations.Data
{
using (var statement = db.PrepareStatement("insert into LocalUsersv2 (guid, data) values (@guid, @data)"))
{
statement.TryBind("@guid", user.Id.ToGuidBlob());
statement.TryBind("@guid", user.Id.ToByteArray());
statement.TryBind("@data", serialized);
statement.MoveNext();