File tree 2 files changed +12
-5
lines changed
2 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @hackerrank/firepad" ,
3
3
"description" : " Collaborative text editing powered by Firebase" ,
4
- "version" : " 0.7.1 -beta" ,
4
+ "version" : " 0.7.4 -beta" ,
5
5
"author" : {
6
6
7
7
"name" : " Progyan Bhattacharya" ,
Original file line number Diff line number Diff line change @@ -302,7 +302,7 @@ export class FirestoreAdapter implements IDatabaseAdapter {
302
302
}
303
303
} )
304
304
. catch ( ( error ) => {
305
- console . log ( " Error getting cached document: ", error ) ;
305
+ console . error ( "[firestore] Error getting checkpoint ", error ) ;
306
306
} ) ;
307
307
}
308
308
@@ -340,9 +340,14 @@ export class FirestoreAdapter implements IDatabaseAdapter {
340
340
} ) ;
341
341
} ) ;
342
342
343
- historyRef . get ( ) . then ( ( ) => {
344
- this . _handleInitialRevisions ( ) ;
345
- } ) ;
343
+ historyRef
344
+ . get ( )
345
+ . then ( ( ) => {
346
+ this . _handleInitialRevisions ( ) ;
347
+ } )
348
+ . catch ( ( error ) => {
349
+ console . error ( "[firestore] Error getting initial revisions" , error ) ;
350
+ } ) ;
346
351
}
347
352
348
353
/**
@@ -724,6 +729,8 @@ export class FirestoreAdapter implements IDatabaseAdapter {
724
729
}
725
730
} )
726
731
. catch ( ( error ) => {
732
+ console . error ( "[firestore] Error sending cursor" , error ) ;
733
+
727
734
if ( typeof callback === "function" ) {
728
735
callback ( error , cursor ) ;
729
736
}
You can’t perform that action at this time.
0 commit comments