From fefe3d2419a50cd8b2c8e69c575213b5d512fb2d Mon Sep 17 00:00:00 2001 From: Wootak Jung Date: Thu, 13 Oct 2022 13:36:40 +0900 Subject: [PATCH] Fix the rssi value setting issue Change-Id: I1c35eb95015fd5e5b687279ecd4f7ec839d31829 Signed-off-by: Wootak Jung --- SettingBluetooth/SettingBluetooth/View/BtDeviceView.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/SettingBluetooth/SettingBluetooth/View/BtDeviceView.cs b/SettingBluetooth/SettingBluetooth/View/BtDeviceView.cs index 2a69d75..f7e798e 100644 --- a/SettingBluetooth/SettingBluetooth/View/BtDeviceView.cs +++ b/SettingBluetooth/SettingBluetooth/View/BtDeviceView.cs @@ -43,6 +43,7 @@ namespace SettingBluetooth mAddress = btDevice.Address; mName = btDevice.Name; mBtDevice = btDevice; + mRssi = btDevice.Rssi; string icon; switch (btDevice.DeviceIcon) { -- 2.34.1