fix(legacy): replay_gain_modifier should be a system preference (#2943)
This commit is contained in:
parent
3b353ec74b
commit
37d1a7685e
|
@ -26,6 +26,10 @@ Please follow this **before the upgrade procedure**.
|
||||||
|
|
||||||
## :arrow_up: Upgrading
|
## :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
|
## :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.
|
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.
|
||||||
|
|
|
@ -1265,7 +1265,7 @@ class Application_Model_Preference
|
||||||
|
|
||||||
public static function setReplayGainModifier($rg_modifier)
|
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)
|
public static function SetHistoryItemTemplate($value)
|
||||||
|
|
Loading…
Reference in New Issue