mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-09-01 01:12:58 +00:00
More warning fixes
This commit is contained in:
parent
d9a03c9bb1
commit
016be02cd6
9 changed files with 105 additions and 148 deletions
|
|
@ -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();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue