Make LUFS property nullable in BaseItemDto

This fixes a regression from #9222 where the LUFS field in the OpenAPI spec was not nullable. This will cause issues with the Kotlin SDK.
pull/9858/head
Niels van Velzen 1 year ago committed by GitHub
parent a4a10f101e
commit d23578c46f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -783,7 +783,7 @@ namespace MediaBrowser.Model.Dto
/// Gets or sets the LUFS value.
/// </summary>
/// <value>The LUFS Value.</value>
public float LUFS { get; set; }
public float? LUFS { get; set; }
/// <summary>
/// Gets or sets the current program.

Loading…
Cancel
Save