Browse Source

Merge pull request #131 from cuu/master

...
GNU 5 years ago
parent
commit
a2d8555092
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Menu/GameShell/10_Settings/Bluetooth/__init__.py

+ 1 - 1
Menu/GameShell/10_Settings/Bluetooth/__init__.py

@@ -568,7 +568,7 @@ class BluetoothPage(Page):
             if "Name" in self._Devices[v]:
                 if len(self._Devices[v]["Name"]) < 2:
                     continue
-                if re.match("[0-9a-f]{2}([-:]?)[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$", self._Devices[v]["Name"].lower()):
+                if re.match("[0-9a-f]{2}([-:]?)[0-9a-f]{2}(\\1[0-9a-f]{2}){4}$", self._Devices[v]["Name"].lower()): ## skip xx:xx:xx:xx:xx
                     continue
             else:
                 continue