diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-08-12 15:11:45 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2016-08-12 15:11:45 -0400 |
| commit | d9ee4f81fdd161af7bd27f5dba420341e266262d (patch) | |
| tree | f74660527e1d373293c66764db5e29250ced0957 /MediaBrowser.Controller/Entities/GameGenre.cs | |
| parent | 75513170751d0213fc0e6c9121c383f83c14ed06 (diff) | |
rework storage of PresentationUniqueKey
Diffstat (limited to 'MediaBrowser.Controller/Entities/GameGenre.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/GameGenre.cs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/MediaBrowser.Controller/Entities/GameGenre.cs b/MediaBrowser.Controller/Entities/GameGenre.cs index 45e766c0f..5d66bf3ab 100644 --- a/MediaBrowser.Controller/Entities/GameGenre.cs +++ b/MediaBrowser.Controller/Entities/GameGenre.cs @@ -16,12 +16,9 @@ namespace MediaBrowser.Controller.Entities return list; } - public override string PresentationUniqueKey + public override string CreatePresentationUniqueKey() { - get - { - return GetUserDataKeys()[0]; - } + return GetUserDataKeys()[0]; } /// <summary> |
