diff options
| author | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-01 19:33:50 -0400 |
|---|---|---|
| committer | Luke Pulverenti <luke.pulverenti@gmail.com> | 2013-10-01 19:33:50 -0400 |
| commit | 26ccfa9b0f4128270cb4afee597c206e9d868904 (patch) | |
| tree | c705609d7331153a4c92de52b3d27ec25d7666e0 /MediaBrowser.Controller/Entities/Game.cs | |
| parent | 59acec81432f4edeca869baeec0cc2a833647c0a (diff) | |
key music user data using musicbrainz id's
Diffstat (limited to 'MediaBrowser.Controller/Entities/Game.cs')
| -rw-r--r-- | MediaBrowser.Controller/Entities/Game.cs | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/MediaBrowser.Controller/Entities/Game.cs b/MediaBrowser.Controller/Entities/Game.cs index 6c15e73038..a71cfe34a7 100644 --- a/MediaBrowser.Controller/Entities/Game.cs +++ b/MediaBrowser.Controller/Entities/Game.cs @@ -1,4 +1,5 @@ -using System.Collections.Generic; +using MediaBrowser.Model.Entities; +using System.Collections.Generic; namespace MediaBrowser.Controller.Entities { @@ -68,5 +69,10 @@ namespace MediaBrowser.Controller.Entities return !IsInMixedFolder; } } + + public override string GetUserDataKey() + { + return this.GetProviderId(MetadataProviders.Gamesdb) ?? base.GetUserDataKey(); + } } } |
