File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
+ - [ fixed] Fixed an issue that caused ` .info/serverTimeOffset ` events not to fire (#2043 ).
3
+
4
+ # 6.3.4
2
5
- [ fixed] Fixed an issue where multi-byte UTF-8 characters would not be written correctly when using ` firebase.js ` or ` firebase-database.js ` (#2035 ).
6
+
7
+ # 6.0.0
3
8
- [ changed] Improved consistency between the type annotations for ` Query.on ` /` Reference.on ` ,
4
9
` Query.off ` /` Reference.off ` and ` Query.once ` /` Reference.once ` (#1188 , #1204 ).
Original file line number Diff line number Diff line change @@ -274,7 +274,7 @@ export class Repo {
274
274
}
275
275
276
276
private onServerInfoUpdate_ ( updates : Object ) {
277
- each ( updates , ( value : any , key : string ) => {
277
+ each ( updates , ( key : string , value : any ) => {
278
278
this . updateInfo_ ( key , value ) ;
279
279
} ) ;
280
280
}
Original file line number Diff line number Diff line change @@ -105,9 +105,7 @@ describe('.info Tests', function() {
105
105
return ea . promise ;
106
106
} ) ;
107
107
108
- // Skipping this test as it is expecting a server time diff from a
109
- // local Firebase
110
- it . skip ( '.info/serverTimeOffset' , async function ( ) {
108
+ it ( '.info/serverTimeOffset' , async function ( ) {
111
109
const ref = getRootNode ( ) as Reference ;
112
110
113
111
// make sure push works
You can’t perform that action at this time.
0 commit comments