aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2021-10-26 15:49:01 +0200
committerBond_009 <bond.009@outlook.com>2021-10-26 15:49:01 +0200
commitf5ca9cbc3bcffc13830669d5790525c6c11f9136 (patch)
treeb0ddbc7333ef1d9d59a1461e953166d5390dc34c /MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs
parentdc72d90703eab626f5241755251fa97c9b854604 (diff)
Enable nullable for MediaBrowser.Providers
Diffstat (limited to 'MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs')
-rw-r--r--MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs b/MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs
index 138cfef19a..3a400575bc 100644
--- a/MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs
+++ b/MediaBrowser.Providers/Plugins/AudioDb/AudioDbAlbumExternalId.cs
@@ -19,7 +19,7 @@ namespace MediaBrowser.Providers.Plugins.AudioDb
public ExternalIdMediaType? Type => null;
/// <inheritdoc />
- public string UrlFormatString => "https://www.theaudiodb.com/album/{0}";
+ public string? UrlFormatString => "https://www.theaudiodb.com/album/{0}";
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is MusicAlbum;