File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -51,7 +51,8 @@ export default class IndexedDBWrapper extends FabricEventTarget {
5151 this . database = event . target . result ;
5252 this . database . onerror = ( evt : Event ) => {
5353 throw this . wrapErrorEvent ( evt . target . error , `IDB.onerror` ,
54- "\n\tstores:" , this . storeDescriptors . map ( ( { name } ) => name ) . join ( ", " ) ) ;
54+ "\n\tstores:" , this . storeDescriptors
55+ . map ( descriptor => ( descriptor ? descriptor . name : "<no descriptor>" ) ) . join ( ", " ) ) ;
5556 } ;
5657 }
5758
Original file line number Diff line number Diff line change @@ -269,6 +269,7 @@ exports.handler = async (yargv) => {
269269 }
270270 state . domString = server . serializeMainDOM ( ) ;
271271 state . tick = tick ;
272+ state . timeStamp = Date . now ( ) ;
272273 _writeDomString ( state . domString ,
273274 heartbeatClockFields ? JSON . stringify ( heartbeatClockFields ) : "<no heartbeat fields>" ) ;
274275 if ( vExecThis && execBody ) {
You can’t perform that action at this time.
0 commit comments