diff options
| author | Niels van Velzen <nielsvanvelzen@users.noreply.github.com> | 2024-09-22 16:58:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-22 08:58:23 -0600 |
| commit | bcc818f397789be7d487e58726a6dd415546f194 (patch) | |
| tree | 84d4d90eb6c544171f5d5d3808b80c9d3da29883 /MediaBrowser.Model/Dlna/DeviceProfile.cs | |
| parent | b162e9290ba7e4265010079708e158399356635c (diff) | |
Fix DeviceProfile.Id should be nullable (#12679)
Diffstat (limited to 'MediaBrowser.Model/Dlna/DeviceProfile.cs')
| -rw-r--r-- | MediaBrowser.Model/Dlna/DeviceProfile.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Model/Dlna/DeviceProfile.cs b/MediaBrowser.Model/Dlna/DeviceProfile.cs index f68957622..995b7633a 100644 --- a/MediaBrowser.Model/Dlna/DeviceProfile.cs +++ b/MediaBrowser.Model/Dlna/DeviceProfile.cs @@ -22,7 +22,7 @@ public class DeviceProfile /// <summary> /// Gets or sets the unique internal identifier. /// </summary> - public Guid Id { get; set; } + public Guid? Id { get; set; } /// <summary> /// Gets or sets the maximum allowed bitrate for all streamed content. |
