mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 04:34:18 +01:00
support url's after closing nfo tag
This commit is contained in:
@@ -46,6 +46,21 @@ namespace MediaBrowser.Controller.Entities
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// TODO: Remove
|
||||
/// </summary>
|
||||
public string Artist
|
||||
{
|
||||
get { return Artists.FirstOrDefault(); }
|
||||
set
|
||||
{
|
||||
if (!string.IsNullOrEmpty(value) && !Artists.Contains(value, StringComparer.OrdinalIgnoreCase))
|
||||
{
|
||||
Artists.Add(value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Determines whether the specified name has artist.
|
||||
/// </summary>
|
||||
|
||||
Reference in New Issue
Block a user