diff options
-rw-r--r-- | core/btdiscovery.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index ffa2a26f0..b764098ef 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -40,9 +40,10 @@ static dc_descriptor_t *getDeviceType(QString btName) product = "EON Steel"; } - if (btName.startsWith("G2")) { + if (btName.startsWith("G2") || btName.startsWith("Aladin")) { vendor = "Scubapro"; - product = "G2"; + if (btName.startsWith("G2")) product = "G2"; + if (btName.startsWith("Aladin")) product = "Aladin Sport Matrix"; } if (!vendor.isEmpty() && !product.isEmpty()) |