File tree Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Expand file tree Collapse file tree 2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 1
1
# v8.9.0
2
2
- [ fixed] Fixed Shortlink regression involving underscores and dashes introduced in 8.8.0. (#8786 )
3
+ - [ fixed] Reduce memory stress on ` WebKit ` API. #8847
3
4
4
5
# v8.8.0
5
6
- [ fixed] Firebase dynamic links with custom domain will only work if the custom domain has a trailing '/'. (#7087 )
Original file line number Diff line number Diff line change @@ -245,10 +245,7 @@ - (void)fetchLocaleFromWebView {
245
245
if (_jsExecutor) {
246
246
return ;
247
247
}
248
- NSString *jsString = @" window.generateFingerprint=function(){try{var "
249
- @" languageCode=navigator.languages?navigator.languages[0]:navigator."
250
- @" language;return languageCode;}catch(b){return"
251
- " }};" ;
248
+ NSString *jsString = @" window.generateFingerprint=()=>navigator.language||''" ;
252
249
_jsExecutor = [[FIRDLJavaScriptExecutor alloc ] initWithDelegate: self script: jsString];
253
250
}
254
251
You can’t perform that action at this time.
0 commit comments