mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-04 23:08:42 +01:00
Fixed blank ForcedSortName
This commit is contained in:
@@ -409,7 +409,12 @@ namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
get
|
||||
{
|
||||
return ForcedSortName ?? _sortName ?? (_sortName = CreateSortName());
|
||||
if (!string.IsNullOrEmpty(ForcedSortName))
|
||||
{
|
||||
return ForcedSortName;
|
||||
}
|
||||
|
||||
return _sortName ?? (_sortName = CreateSortName());
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user