aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Movies
diff options
context:
space:
mode:
authorLuke Foust <luke@foust.com>2020-03-22 12:58:53 -0700
committerLuke Foust <luke@foust.com>2020-03-22 12:58:53 -0700
commit9bdb99fe92edaf06679ef855eae9f8bb69b970df (patch)
treee87d28c3a2255b32f83a94fb27e7f41e4fb98d1a /MediaBrowser.Providers/Movies
parentf3213d3bef8a49a5e91cafaba2eaefb5592438c6 (diff)
Add type to externalids to distinguish them in the UI
Diffstat (limited to 'MediaBrowser.Providers/Movies')
-rw-r--r--MediaBrowser.Providers/Movies/MovieExternalIds.cs6
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 />