aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Model/Dlna/ContainerProfile.cs
diff options
context:
space:
mode:
authorBond_009 <bond.009@outlook.com>2023-03-07 21:51:48 +0100
committerBond_009 <bond.009@outlook.com>2023-03-07 21:51:48 +0100
commitdab75d35d2648ff8717aa6dc08eed1db640aea40 (patch)
treec7e6916e3f6b58b7bf6b868e594735d3f8cb85be /MediaBrowser.Model/Dlna/ContainerProfile.cs
parent1244502fa859ba58c8a2129e87036c11a60748e4 (diff)
Enable nullable for more files
Diffstat (limited to 'MediaBrowser.Model/Dlna/ContainerProfile.cs')
-rw-r--r--MediaBrowser.Model/Dlna/ContainerProfile.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/ContainerProfile.cs b/MediaBrowser.Model/Dlna/ContainerProfile.cs
index 927df8e4e..978004268 100644
--- a/MediaBrowser.Model/Dlna/ContainerProfile.cs
+++ b/MediaBrowser.Model/Dlna/ContainerProfile.cs
@@ -11,7 +11,7 @@ namespace MediaBrowser.Model.Dlna
[XmlAttribute("type")]
public DlnaProfileType Type { get; set; }
- public ProfileCondition[]? Conditions { get; set; } = Array.Empty<ProfileCondition>();
+ public ProfileCondition[] Conditions { get; set; } = Array.Empty<ProfileCondition>();
[XmlAttribute("container")]
public string Container { get; set; } = string.Empty;