mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-07-12 11:52:07 +10:00
fix: path formatting in DM mode
This commit is contained in:
@@ -78,7 +78,10 @@ class _PathManagementDialogState extends State<_PathManagementDialog> {
|
||||
final connector = context.read<MeshCoreConnector>();
|
||||
final allContacts = connector.allContacts;
|
||||
|
||||
final formattedPath = PathHelper.formatPathHex(pathBytes);
|
||||
final formattedPath = PathHelper.splitPathBytes(
|
||||
pathBytes,
|
||||
connector.pathHashByteWidth,
|
||||
).map(PathHelper.formatHopHex).join(',');
|
||||
final resolvedNames = PathHelper.resolvePathNames(
|
||||
pathBytes,
|
||||
allContacts,
|
||||
|
||||
Reference in New Issue
Block a user