File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -237,7 +237,6 @@ class EmberApp {
237237
238238 return instance . boot ( bootOptions ) ;
239239 } )
240- . then ( ( ) => result . instanceBooted = true )
241240 . then ( ( ) => instance . visit ( path , bootOptions ) )
242241 . then ( ( ) => fastbootInfo . deferredPromise )
243242 . then ( ( ) => instance ) ;
Original file line number Diff line number Diff line change @@ -10,7 +10,6 @@ const HTMLSerializer = new SimpleDOM.HTMLSerializer(SimpleDOM.voidMap);
1010 */
1111class Result {
1212 constructor ( options ) {
13- this . instanceBooted = false ;
1413 this . _instanceDestroyed = false ;
1514 this . _doc = options . doc ;
1615 this . _html = options . html ;
@@ -85,7 +84,7 @@ class Result {
8584 }
8685
8786 _finalizeMetadata ( instance ) {
88- if ( this . instanceBooted ) {
87+ if ( instance . _booted ) {
8988 this . url = instance . getURL ( ) ;
9089 }
9190
You can’t perform that action at this time.
0 commit comments