mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-19 12:44:19 +01:00
support multiple user data keys
This commit is contained in:
@@ -18,13 +18,12 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// <value>The place of birth.</value>
|
||||
public string PlaceOfBirth { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Gets the user data key.
|
||||
/// </summary>
|
||||
/// <returns>System.String.</returns>
|
||||
protected override string CreateUserDataKey()
|
||||
public override List<string> GetUserDataKeys()
|
||||
{
|
||||
return "Person-" + Name;
|
||||
var list = base.GetUserDataKeys();
|
||||
|
||||
list.Insert(0, "Person-" + Name);
|
||||
return list;
|
||||
}
|
||||
|
||||
public PersonLookupInfo GetLookupInfo()
|
||||
|
||||
Reference in New Issue
Block a user