File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 11# Unreleased
2+ - [ fixed] Fixed an issue where auth credentials were not respected in Cordova
3+ environments (#2626 ).
24- [ fixed] Fixed a performance regression introduced by the addition of
35 ` Query.limitToLast(n: number) ` in Firestore 1.7.0 (Firebase 7.3.0) (#2620 ).
46- [ fixed] Fixed an issue where ` CollectionReference.add() ` would reject
5- custom types when using ` withConverter() ` . (#2606 )
7+ custom types when using ` withConverter() ` (#2606 ).
68
79# 1.9.3
810- [ fixed] Fixed an issue where auth credentials were not respected in some
Original file line number Diff line number Diff line change @@ -29,6 +29,7 @@ import {
2929 isBrowserExtension ,
3030 isElectron ,
3131 isIE ,
32+ isMobileCordova ,
3233 isReactNative ,
3334 isUWP
3435} from '@firebase/util' ;
@@ -275,6 +276,7 @@ export class WebChannelConnection implements Connection {
275276 // known to (sometimes) not include an Origin. See
276277 // https://github.com/firebase/firebase-js-sdk/issues/1491.
277278 if (
279+ ! isMobileCordova ( ) &&
278280 ! isReactNative ( ) &&
279281 ! isElectron ( ) &&
280282 ! isIE ( ) &&
You can’t perform that action at this time.
0 commit comments