diff options
| author | Luke Foust <luke@foust.com> | 2020-03-22 12:58:53 -0700 |
|---|---|---|
| committer | Luke Foust <luke@foust.com> | 2020-03-22 12:58:53 -0700 |
| commit | 9bdb99fe92edaf06679ef855eae9f8bb69b970df (patch) | |
| tree | e87d28c3a2255b32f83a94fb27e7f41e4fb98d1a /MediaBrowser.Providers/Music | |
| parent | f3213d3bef8a49a5e91cafaba2eaefb5592438c6 (diff) | |
Add type to externalids to distinguish them in the UI
Diffstat (limited to 'MediaBrowser.Providers/Music')
| -rw-r--r-- | MediaBrowser.Providers/Music/MusicExternalIds.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Music/MusicExternalIds.cs b/MediaBrowser.Providers/Music/MusicExternalIds.cs index 628b9a9a1..54e034713 100644 --- a/MediaBrowser.Providers/Music/MusicExternalIds.cs +++ b/MediaBrowser.Providers/Music/MusicExternalIds.cs @@ -13,6 +13,9 @@ namespace MediaBrowser.Providers.Music public string Key => "IMVDb"; /// <inheritdoc /> + public ExternalIdType Type => ExternalIdType.None; + + /// <inheritdoc /> public string UrlFormatString => null; /// <inheritdoc /> |
