Skip to content

Commit 7f3a6f2

Browse files
authored
Merge pull request #226 from Resgrid/develop
RU-T47 Fixing ios build
2 parents 76e13e6 + cee48bb commit 7f3a6f2

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/react-native-cicd.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ env:
7878
NODE_OPTIONS: --openssl-legacy-provider
7979
CHANGERAWR_API_KEY: ${{ secrets.CHANGERAWR_API_KEY }}
8080
CHANGERAWR_API_URL: ${{ secrets.CHANGERAWR_API_URL }}
81+
YARN_PRODUCTION: 'false'
8182

8283
jobs:
8384
check-skip:

src/services/bluetooth-audio.service.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1491,9 +1491,7 @@ class BluetoothAudioService {
14911491
void this.pollReadCharacteristics(deviceId).finally(() => {
14921492
this.isReadPollingInFlight = false;
14931493
});
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);
1494+
}, 700);
14971495
}
14981496

14991497
private async pollReadCharacteristics(deviceId: string): Promise<void> {

0 commit comments

Comments
 (0)