Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/85ed86e5f6d625a059d3dfd0ae29e5b9559b8804 You should set ROOT_URL correctly, otherwise the web may not work correctly.

fixes - Music Album inconsistent naming/sorting

pull/702/head
Luke Pulverenti 12 years ago
parent e49848b8bf
commit 85ed86e5f6

@ -46,11 +46,25 @@ namespace MediaBrowser.Controller.Entities
public const string ThemeSongsFolderName = "theme-music";
public const string ThemeVideosFolderName = "backdrops";
private string _name;
/// <summary>
/// Gets or sets the name.
/// </summary>
/// <value>The name.</value>
public virtual string Name { get; set; }
public virtual string Name
{
get
{
return _name;
}
set
{
_name = value;
// lazy load this again
_sortName = null;
}
}
/// <summary>
/// Gets or sets the id.

Loading…
Cancel
Save