Skip to content

Commit 2251bf7

Browse files
authoredMar 13, 2023
Merge pull request #1412 from tomivm/fix/synth-cancel-IOS-only
Fix/synth cancel before play only on Safari or Apple touch devices
2 parents b30c305 + f1ded7f commit 2251bf7

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed
 

‎src/constants.js

+13-3
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,16 @@ export const ADSENSE_CLIENT = 'ca-pub-7162313874228987';
3232

3333
export const ADD_SLOT_SETTINGS_TOP = '5250438005';
3434

35-
export const IS_BROWSING_FROM_APPLE = /iPad|iPhone|iPod|Mac/.test(
36-
navigator.userAgent
37-
);
35+
const userAgent = navigator.userAgent;
36+
37+
export const IS_BROWSING_FROM_APPLE = /iPad|iPhone|iPod|Mac/.test(userAgent);
38+
39+
export const IS_BROWSING_FROM_APPLE_TOUCH =
40+
IS_BROWSING_FROM_APPLE && 'ontouchend' in document;
41+
42+
export const IS_BROWSING_FROM_SAFARI =
43+
userAgent.indexOf('Safari') > -1 &&
44+
userAgent.indexOf('Chrome') === -1 &&
45+
!navigator.userAgent.match(/crios/i) &&
46+
!navigator.userAgent.match(/fxios/i) &&
47+
!navigator.userAgent.match(/Opera|OPT\//);

‎src/providers/SpeechProvider/tts.js

+5-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ import API from '../../api';
44
import {
55
AZURE_SPEECH_SERVICE_REGION,
66
AZURE_SPEECH_SUBSCR_KEY,
7-
IS_BROWSING_FROM_APPLE
7+
IS_BROWSING_FROM_APPLE,
8+
IS_BROWSING_FROM_APPLE_TOUCH,
9+
IS_BROWSING_FROM_SAFARI
810
} from '../../constants';
911
import { getStore } from '../../store';
1012

@@ -267,7 +269,8 @@ const tts = {
267269
msg.rate = rate;
268270
msg.volume = volume;
269271
msg.onend = onend;
270-
synth.cancel();
272+
if (IS_BROWSING_FROM_SAFARI || IS_BROWSING_FROM_APPLE_TOUCH)
273+
synth.cancel();
271274
synth.speak(msg);
272275
}
273276
}

0 commit comments

Comments
 (0)
Please sign in to comment.