1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Use NormalizationGain instead of LUFS

This commit is contained in:
Bond_009 2024-04-28 17:36:29 +02:00
parent d120c65a3e
commit e132332896
2 changed files with 5 additions and 7 deletions

View file

@ -2782,7 +2782,7 @@ class PlaybackManager {
} else {
if (item.AlbumId != null) {
return apiClient.getItem(apiClient.getCurrentUserId(), item.AlbumId).then(function(result) {
mediaSource.albumLUFS = result.LUFS;
mediaSource.albumNormalizationGain = result.NormalizationGain;
return mediaSource;
});
}