We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3985e2 commit 6a55b6dCopy full SHA for 6a55b6d
src/bluetooth.ios.ts
@@ -510,7 +510,7 @@ export class AdvertismentData {
510
const serviceUuids = this.advData.objectForKey(CBAdvertisementDataServiceUUIDsKey);
511
if (serviceUuids) {
512
for (let i = 0; i < serviceUuids.count; i++) {
513
- result.push(serviceUuids[i].toString());
+ result.push(CBUUIDToString(serviceUuids[i]));
514
}
515
516
return result;
0 commit comments