Fix the previous fix ;-)

master
cpfeiffer 2016-10-11 21:35:45 +02:00
parent 1fc44034f0
commit a559140f67
1 changed files with 2 additions and 1 deletions

View File

@ -93,7 +93,8 @@ public class MiBandPreferencesActivity extends AbstractSettingsActivity {
prefKeys.add(getNotificationPrefKey(VIBRATION_COUNT, ORIGIN_INCOMING_CALL));
for (NotificationType type : NotificationType.values()) {
prefKeys.add(type.getGenericType());
String key = type.getGenericType();
prefKeys.add(getNotificationPrefKey(VIBRATION_COUNT, key));
}
return prefKeys.toArray(new String[0]);