fix(legacy): replay_gain_modifier should be a system preference (#2943)

This commit is contained in:
Jonas L 2024-02-08 19:48:49 +01:00 committed by GitHub
parent 3b353ec74b
commit 37d1a7685e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 5 additions and 1 deletions

View File

@ -26,6 +26,10 @@ Please follow this **before the upgrade procedure**.
## :arrow_up: Upgrading
### Replay gain modifier preference
The `replay_gain_modifier` preference is now stored as system preference. Please check and save the replay gain modifier preference manually to make sure the preference is up to date and usable.
## :warning: Known issues
The following issues may need a workaround for the time being. Please search the [issues](https://github.com/libretime/libretime/issues) before reporting problems not listed below.

View File

@ -1265,7 +1265,7 @@ class Application_Model_Preference
public static function setReplayGainModifier($rg_modifier)
{
self::setValue('replay_gain_modifier', $rg_modifier, true);
self::setValue('replay_gain_modifier', $rg_modifier, false);
}
public static function SetHistoryItemTemplate($value)