Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Making sure that _staticDetails exists, this may be the case when usi…
Browse files Browse the repository at this point in the history
…ng lazyMojits/lazyLangs and executing a mojit without going through the mojito-handler-static middleware.
  • Loading branch information
aljimenez committed Jul 15, 2014
1 parent 4e314ae commit 65589c3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/app/autoload/store.server.js
Expand Up @@ -2174,7 +2174,9 @@ YUI.add('mojito-resource-store', function(Y, NAME) {
this.yui._processResources(ress);

// Add new static details.
this.getURLDetails(ress, this._staticDetails);
if (this._staticDetails) {
this.getURLDetails(ress, this._staticDetails);
}
},


Expand Down

0 comments on commit 65589c3

Please sign in to comment.