diff --git a/Emby.Server.Implementations/Dto/DtoService.cs b/Emby.Server.Implementations/Dto/DtoService.cs
index a82258bae5..19902b26a0 100644
--- a/Emby.Server.Implementations/Dto/DtoService.cs
+++ b/Emby.Server.Implementations/Dto/DtoService.cs
@@ -900,6 +900,7 @@ namespace Emby.Server.Implementations.Dto
if (item.LUFS.HasValue)
{
+ // -18 LUFS reference, same as ReplayGain 2.0, compatible with ReplayGain 1.0
dto.NormalizationGain = -18f - item.LUFS;
}
else if (item.NormalizationGain.HasValue)
diff --git a/MediaBrowser.Controller/Entities/BaseItem.cs b/MediaBrowser.Controller/Entities/BaseItem.cs
index 3dd4d1e39d..adbbbaa034 100644
--- a/MediaBrowser.Controller/Entities/BaseItem.cs
+++ b/MediaBrowser.Controller/Entities/BaseItem.cs
@@ -140,7 +140,7 @@ namespace MediaBrowser.Controller.Entities
///
/// Gets or sets the gain required for audio normalization.
///
- /// The gain required for audio normalization..
+ /// The gain required for audio normalization.
[JsonIgnore]
public float? NormalizationGain { get; set; }
diff --git a/MediaBrowser.Model/Dto/BaseItemDto.cs b/MediaBrowser.Model/Dto/BaseItemDto.cs
index 623e588077..7e8949e1fb 100644
--- a/MediaBrowser.Model/Dto/BaseItemDto.cs
+++ b/MediaBrowser.Model/Dto/BaseItemDto.cs
@@ -784,7 +784,7 @@ namespace MediaBrowser.Model.Dto
///
/// Gets or sets the gain required for audio normalization.
///
- /// The gain required for audio normalization..
+ /// The gain required for audio normalization.
public float? NormalizationGain { get; set; }
///