Merge pull request #1093 from mfietz/hotfix/1055

Fix smark values
This commit is contained in:
Tom Hennen 2015-08-15 16:25:15 -04:00
commit 0b7331b6b5
1 changed files with 1 additions and 1 deletions

View File

@ -428,7 +428,7 @@ public class PreferenceController {
entries[x] = res.getString(R.string.pref_smart_mark_as_played_disabled);
} else {
Integer v = Integer.parseInt(values[x]);
entries[x] = res.getQuantityString(R.plurals.time_seconds_quantified, v);
entries[x] = res.getQuantityString(R.plurals.time_seconds_quantified, v, v);
}
}
pref.setEntries(entries);