aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Providers/TV
diff options
context:
space:
mode:
authorStepan Goremykin <goremukin@gmail.com>2023-10-08 00:22:36 +0200
committerStepan Goremykin <goremukin@gmail.com>2023-10-08 00:22:36 +0200
commit3f9ee316d52fd9623012641c7d270df2cbba8c6b (patch)
tree4d81fb2a44211d89ac117bf508b358de4c12b8b8 /MediaBrowser.Providers/TV
parenta37dc3da96a5445178de01c43a683230bc14882f (diff)
Use non nullable property type when possible
Diffstat (limited to 'MediaBrowser.Providers/TV')
-rw-r--r--MediaBrowser.Providers/TV/Zap2ItExternalId.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Providers/TV/Zap2ItExternalId.cs b/MediaBrowser.Providers/TV/Zap2ItExternalId.cs
index 087e4036a5..3cb18e4248 100644
--- a/MediaBrowser.Providers/TV/Zap2ItExternalId.cs
+++ b/MediaBrowser.Providers/TV/Zap2ItExternalId.cs
@@ -19,7 +19,7 @@ namespace MediaBrowser.Providers.TV
public ExternalIdMediaType? Type => null;
/// <inheritdoc />
- public string? UrlFormatString => "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}";
+ public string UrlFormatString => "http://tvlistings.zap2it.com/overview.html?programSeriesId={0}";
/// <inheritdoc />
public bool Supports(IHasProviderIds item) => item is Series;