mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
Fix: Display correct hardware info in NodeInfo
The hardware information displayed in the NodeInfo view was incorrect. This commit fixes the issue by using the correct node information to retrieve the hardware model string.
This commit is contained in:
parent
6e370a9919
commit
183b337d61
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ fun NodeInfo(
|
|||
textDecoration = TextDecoration.LineThrough.takeIf { isIgnored },
|
||||
)
|
||||
|
||||
val hwInfoString = thisNodeInfo?.user?.hwModelString
|
||||
val hwInfoString = thatNodeInfo.user?.hwModelString
|
||||
if (hwInfoString != null){
|
||||
Text(
|
||||
modifier = Modifier.constrainAs(hw) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue