mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-05 07:18:47 +01:00
don't serialize user data in db
This commit is contained in:
@@ -17,13 +17,13 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// <summary>
|
||||
/// The _rating
|
||||
/// </summary>
|
||||
private float? _rating;
|
||||
private double? _rating;
|
||||
/// <summary>
|
||||
/// Gets or sets the users 0-10 rating
|
||||
/// </summary>
|
||||
/// <value>The rating.</value>
|
||||
/// <exception cref="System.ArgumentOutOfRangeException">Rating;A 0 to 10 rating is required for UserItemData.</exception>
|
||||
public float? Rating
|
||||
public double? Rating
|
||||
{
|
||||
get
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user