diff options
Diffstat (limited to 'core/btdiscovery.cpp')
-rw-r--r-- | core/btdiscovery.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/core/btdiscovery.cpp b/core/btdiscovery.cpp index 4d46eefde..a37f36a92 100644 --- a/core/btdiscovery.cpp +++ b/core/btdiscovery.cpp @@ -18,8 +18,7 @@ static dc_descriptor_t *getDeviceType(QString btName) if (btName.startsWith("OSTC")) { vendor = "Heinrichs Weikamp"; - if (btName.mid(4,2) == "3#") product = "OSTC 3"; - else if (btName.mid(4,2) == "3+") product = "OSTC 3+"; + if (btName.mid(4,1) == "3") product = "OSTC Plus"; else if (btName.mid(4,2) == "s#") product = "OSTC Sport"; else if (btName.mid(4,2) == "s ") product = "OSTC Sport"; else if (btName.mid(4,2) == "4-") product = "OSTC 4"; |