File tree 2 files changed +5
-1
lines changed
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
+ - [ fixed] Fixed an issue where auth credentials were not respected in Cordova
3
+ environments (#2626 ).
2
4
- [ fixed] Fixed a performance regression introduced by the addition of
3
5
` Query.limitToLast(n: number) ` in Firestore 1.7.0 (Firebase 7.3.0) (#2620 ).
4
6
- [ fixed] Fixed an issue where ` CollectionReference.add() ` would reject
5
- custom types when using ` withConverter() ` . (#2606 )
7
+ custom types when using ` withConverter() ` (#2606 ).
6
8
7
9
# 1.9.3
8
10
- [ 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 {
29
29
isBrowserExtension ,
30
30
isElectron ,
31
31
isIE ,
32
+ isMobileCordova ,
32
33
isReactNative ,
33
34
isUWP
34
35
} from '@firebase/util' ;
@@ -275,6 +276,7 @@ export class WebChannelConnection implements Connection {
275
276
// known to (sometimes) not include an Origin. See
276
277
// https://github.com/firebase/firebase-js-sdk/issues/1491.
277
278
if (
279
+ ! isMobileCordova ( ) &&
278
280
! isReactNative ( ) &&
279
281
! isElectron ( ) &&
280
282
! isIE ( ) &&
You can’t perform that action at this time.
0 commit comments