Use default locale when formatting passkey
Bug: 332677725 Test: atest BluetoothPairingControllerTest Change-Id: I21d6606e71eefd2f00994993d3ed277742c5f9b0
This commit is contained in:
@@ -448,7 +448,7 @@ public class BluetoothPairingController implements OnCheckedChangeListener,
|
|||||||
switch (mType) {
|
switch (mType) {
|
||||||
case BluetoothDevice.PAIRING_VARIANT_PASSKEY_CONFIRMATION:
|
case BluetoothDevice.PAIRING_VARIANT_PASSKEY_CONFIRMATION:
|
||||||
case BluetoothDevice.PAIRING_VARIANT_DISPLAY_PASSKEY:
|
case BluetoothDevice.PAIRING_VARIANT_DISPLAY_PASSKEY:
|
||||||
return String.format(Locale.US, "%06d", passkey);
|
return String.format(Locale.getDefault(), "%06d", passkey);
|
||||||
|
|
||||||
case BluetoothDevice.PAIRING_VARIANT_DISPLAY_PIN:
|
case BluetoothDevice.PAIRING_VARIANT_DISPLAY_PIN:
|
||||||
return String.format("%04d", passkey);
|
return String.format("%04d", passkey);
|
||||||
|
Reference in New Issue
Block a user