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/Movies | |
| parent | f3213d3bef8a49a5e91cafaba2eaefb5592438c6 (diff) | |
Add type to externalids to distinguish them in the UI
Diffstat (limited to 'MediaBrowser.Providers/Movies')
| -rw-r--r-- | MediaBrowser.Providers/Movies/MovieExternalIds.cs | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/MediaBrowser.Providers/Movies/MovieExternalIds.cs b/MediaBrowser.Providers/Movies/MovieExternalIds.cs index 55810b1ed..1ede0e7a5 100644 --- a/MediaBrowser.Providers/Movies/MovieExternalIds.cs +++ b/MediaBrowser.Providers/Movies/MovieExternalIds.cs @@ -16,6 +16,9 @@ namespace MediaBrowser.Providers.Movies public string Key => MetadataProviders.Imdb.ToString(); /// <inheritdoc /> + public ExternalIdType Type => ExternalIdType.None; + + /// <inheritdoc /> public string UrlFormatString => "https://www.imdb.com/title/{0}"; /// <inheritdoc /> @@ -40,6 +43,9 @@ namespace MediaBrowser.Providers.Movies public string Key => MetadataProviders.Imdb.ToString(); /// <inheritdoc /> + public ExternalIdType Type => ExternalIdType.Person; + + /// <inheritdoc /> public string UrlFormatString => "https://www.imdb.com/name/{0}"; /// <inheritdoc /> |
