1
0
mirror of https://codeberg.org/Freeyourgadget/Gadgetbridge synced 2024-06-16 10:00:08 +02:00

Sony Headphones: Fix setting surround mode

This commit is contained in:
José Rebelo 2022-10-20 23:47:17 +01:00
parent 55cbac5f8f
commit 2c182418fe

View File

@ -48,6 +48,6 @@ public enum SurroundMode {
}
public static SurroundMode fromPreferences(final SharedPreferences prefs) {
return SurroundMode.valueOf(prefs.getString(DeviceSettingsPreferenceConst.PREF_SONY_SOUND_POSITION, "off").toUpperCase());
return SurroundMode.valueOf(prefs.getString(DeviceSettingsPreferenceConst.PREF_SONY_SURROUND_MODE, "off").toUpperCase());
}
}