mirror of
https://github.com/zjs81/meshcore-open.git
synced 2026-04-20 22:13:48 +00:00
Allow search for prefix as Displayed in contact list.
This commit is contained in:
parent
6bd3c17cdf
commit
b7d5ee5754
1 changed files with 3 additions and 0 deletions
|
|
@ -19,6 +19,9 @@ String? _extractHexPrefix(String query) {
|
|||
if (cleaned.startsWith('0x')) {
|
||||
cleaned = cleaned.substring(2);
|
||||
}
|
||||
if (cleaned.startsWith('<')) {
|
||||
cleaned = cleaned.substring(1).replaceAll(">", "");
|
||||
}
|
||||
cleaned = cleaned.replaceAll(' ', '');
|
||||
if (cleaned.length < 2) return null;
|
||||
if (!RegExp(r'^[0-9a-f]+$').hasMatch(cleaned)) return null;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue