#3248 Slightly lessen light reduction

This commit is contained in:
Max Bechtold 2019-07-05 13:36:13 +02:00
parent c628fdfcfd
commit cd7f0245a5
1 changed files with 2 additions and 1 deletions

View File

@ -343,9 +343,10 @@ public class LocalPSMP extends PlaybackServiceMediaPlayer {
FeedPreferences preferences = feedMedia.getItem().getFeed().getPreferences();
FeedPreferences.VolumeReductionSetting volumeReductionSetting = preferences.getVolumeReductionSetting();
// TODO maxbechtold Move this logic out of this class
// TODO maxbechtold These numbers should be tested
if (volumeReductionSetting == FeedPreferences.VolumeReductionSetting.LIGHT) {
return 0.4f;
return 0.5f;
} else if (volumeReductionSetting == FeedPreferences.VolumeReductionSetting.HEAVY) {
return 0.2f;
}