File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -593,6 +593,9 @@ export class Book extends EventTarget {
593593 this . dispatchEvent ( new BookProgressEvent ( this , evt . totalPages , evt . message ) ) ;
594594 } ) ;
595595
596+ if ( Params [ 'debugFetch' ] === 'true' ) {
597+ console . log ( `debugFetch: Calling BookBinder.start()` ) ;
598+ }
596599 // Wait for its decompressing implementation to be loaded and ports connected.
597600 await bookBinder . start ( ) ;
598601 this . #bookBinder = bookBinder ;
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ export class EPUBBookBinder extends BookBinder {
335335 /** @private */
336336 parseOPF_ ( ) {
337337 assert ( this . fileMap_ . has ( this . opfFilename_ ) ,
338- `EPUB archive file did not have a file named '${ this . opfFilename_ } ` ) ;
338+ `EPUB archive file did not have a file named '${ this . opfFilename_ } ' ` ) ;
339339
340340 const lastSlash = this . opfFilename_ . lastIndexOf ( '/' ) ;
341341 const rootDir = lastSlash === - 1 ? '' : this . opfFilename_ . substr ( 0 , lastSlash + 1 ) ;
You can’t perform that action at this time.
0 commit comments