We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7a9e560 commit cee48bbCopy full SHA for cee48bb
2 files changed
.github/workflows/react-native-cicd.yml
@@ -78,6 +78,7 @@ env:
78
NODE_OPTIONS: --openssl-legacy-provider
79
CHANGERAWR_API_KEY: ${{ secrets.CHANGERAWR_API_KEY }}
80
CHANGERAWR_API_URL: ${{ secrets.CHANGERAWR_API_URL }}
81
+ YARN_PRODUCTION: 'false'
82
83
jobs:
84
check-skip:
src/services/bluetooth-audio.service.ts
@@ -1491,9 +1491,7 @@ class BluetoothAudioService {
1491
void this.pollReadCharacteristics(deviceId).finally(() => {
1492
this.isReadPollingInFlight = false;
1493
});
1494
- // 1500ms interval: reduced from 700ms to lower BLE log spam and CPU overhead
1495
- // while still providing sub-2-second PTT button responsiveness
1496
- }, 1500);
+ }, 700);
1497
}
1498
1499
private async pollReadCharacteristics(deviceId: string): Promise<void> {
0 commit comments