Skip to content

Commit 49c6dd2

Browse files
committed
Change name to metadata
1 parent 22c95b4 commit 49c6dd2

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/ember-app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

src/fastboot-info.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ var FastBootResponse = require('./fastboot-response');
88
* on to the FastBoot service.
99
*/
1010
function 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

2222
FastBootInfo.prototype.deferRendering = function(promise) {

0 commit comments

Comments
 (0)