From bcc818f397789be7d487e58726a6dd415546f194 Mon Sep 17 00:00:00 2001 From: Niels van Velzen Date: Sun, 22 Sep 2024 16:58:23 +0200 Subject: Fix DeviceProfile.Id should be nullable (#12679) --- MediaBrowser.Model/Dlna/DeviceProfile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'MediaBrowser.Model/Dlna/DeviceProfile.cs') diff --git a/MediaBrowser.Model/Dlna/DeviceProfile.cs b/MediaBrowser.Model/Dlna/DeviceProfile.cs index f689576222..995b7633a9 100644 --- a/MediaBrowser.Model/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Model/Dlna/DeviceProfile.cs @@ -22,7 +22,7 @@ public class DeviceProfile /// /// Gets or sets the unique internal identifier. /// - public Guid Id { get; set; } + public Guid? Id { get; set; } /// /// Gets or sets the maximum allowed bitrate for all streamed content. -- cgit v1.2.3