Fixed string format

This commit is contained in:
Juha Heinanen
2024-05-04 15:59:05 +03:00
parent 46b200c11d
commit a5463936c6

View File

@ -527,7 +527,7 @@ class AccountActivity : AppCompatActivity() {
if (newConfiguredRegInt < 60 || newConfiguredRegInt > 3600) {
Utils.alertView(
this, getString(R.string.notice),
String.format(getString(R.string.invalid_reg_int), newConfiguredRegInt)
String.format(getString(R.string.invalid_reg_int), "$newConfiguredRegInt")
)
return false
}