File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -202,7 +202,7 @@ class EmberApp {
202202 let fastbootInfo = new FastBootInfo (
203203 req ,
204204 res ,
205- { hostWhitelist : this . hostWhitelist , metaData : options . metaData }
205+ { hostWhitelist : this . hostWhitelist , metadata : options . metadata }
206206 ) ;
207207 let doc = bootOptions . document ;
208208
Original file line number Diff line number Diff line change @@ -8,15 +8,15 @@ var FastBootResponse = require('./fastboot-response');
88 * on to the FastBoot service.
99 */
1010function FastBootInfo ( request , response , options = { } ) {
11- const { hostWhitelist, metaData } = options ;
11+ const { hostWhitelist, metadata } = options ;
1212
1313 this . deferredPromise = RSVP . resolve ( ) ;
1414 if ( request ) {
1515 this . request = new FastBootRequest ( request , hostWhitelist ) ;
1616 }
1717
1818 this . response = new FastBootResponse ( response || { } ) ;
19- this . metaData = metaData ;
19+ this . metadata = metadata ;
2020}
2121
2222FastBootInfo . prototype . deferRendering = function ( promise ) {
You can’t perform that action at this time.
0 commit comments