update suggestions
This commit is contained in:
parent
b6979fa28a
commit
794b13b816
|
@ -114,6 +114,8 @@ namespace MediaBrowser.Model.Dto
|
|||
/// <value>The synchronize percent.</value>
|
||||
public double? SyncPercent { get; set; }
|
||||
|
||||
public string Container { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets or sets the DVD season number.
|
||||
/// </summary>
|
||||
|
|
|
@ -893,6 +893,7 @@ namespace MediaBrowser.Server.Implementations.Dto
|
|||
dto.LockData = item.IsLocked;
|
||||
dto.ForcedSortName = item.ForcedSortName;
|
||||
}
|
||||
dto.Container = item.Container;
|
||||
|
||||
var hasBudget = item as IHasBudget;
|
||||
if (hasBudget != null)
|
||||
|
|
|
@ -2144,7 +2144,7 @@ namespace MediaBrowser.Server.Implementations.Persistence
|
|||
{
|
||||
if (query.User != null)
|
||||
{
|
||||
query.SortBy = new[] { "SimilarityScore", ItemSortBy.IsPlayed, ItemSortBy.Random };
|
||||
query.SortBy = new[] { ItemSortBy.IsPlayed, "SimilarityScore", ItemSortBy.Random };
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue
Block a user