mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-04-20 09:04:42 +01:00
update client sync
This commit is contained in:
@@ -197,7 +197,11 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
"ChannelId",
|
||||
"IsMovie",
|
||||
"IsSports",
|
||||
"IsKids"
|
||||
"IsKids",
|
||||
"CommunityRating",
|
||||
"CustomRating",
|
||||
"IndexNumber",
|
||||
"IsLocked"
|
||||
};
|
||||
|
||||
/// <summary>
|
||||
@@ -558,6 +562,26 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
||||
}
|
||||
}
|
||||
|
||||
if (!reader.IsDBNull(9))
|
||||
{
|
||||
item.CommunityRating = reader.GetFloat(9);
|
||||
}
|
||||
|
||||
if (!reader.IsDBNull(10))
|
||||
{
|
||||
item.CustomRating = reader.GetString(10);
|
||||
}
|
||||
|
||||
if (!reader.IsDBNull(11))
|
||||
{
|
||||
item.IndexNumber = reader.GetInt32(11);
|
||||
}
|
||||
|
||||
if (!reader.IsDBNull(12))
|
||||
{
|
||||
item.IsLocked = reader.GetBoolean(12);
|
||||
}
|
||||
|
||||
return item;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user