Skip to content

Commit

Permalink
fix(ssr): fix bundleRenderer mapped async chunks caching check (#5963)
Browse files Browse the repository at this point in the history
_mappedfiles => _mappedFiles
  • Loading branch information
MopTym authored and yyx990803 committed Jun 30, 2017
1 parent e4da249 commit de42186
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/template-renderer/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -217,7 +217,7 @@ export default class TemplateRenderer {
}

getUsedAsyncFiles (context: Object): ?Array<string> {
if (!context._mappedfiles && context._registeredComponents && this.mapFiles) {
if (!context._mappedFiles && context._registeredComponents && this.mapFiles) {
context._mappedFiles = this.mapFiles(Array.from(context._registeredComponents))
}
return context._mappedFiles
Expand Down

0 comments on commit de42186

Please sign in to comment.