Skip to content

Commit

Permalink
Fixed iOS Check
Browse files Browse the repository at this point in the history
  • Loading branch information
the-bay-kay committed Mar 17, 2024
1 parent b76ce00 commit c990c93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/js/bluetooth/BluetoothScanPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const BluetoothScanPage = ({ ...props }: any) => {
displayErrorMsg('Please Enable Bluetooth!', 'Insufficient Permissions');
return;
}
if (window['cordova'].platformId == 'iOS') {
if (window['cordova'].platformId == 'ios') {
displayErrorMsg('Sorry, iOS is not supported!', 'OSError');
return;
}
Expand Down

0 comments on commit c990c93

Please sign in to comment.