Skip to content

Commit

Permalink
Improving logic for recognizing native modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed May 31, 2011
1 parent 3d87766 commit a79c634
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphquire.js
Expand Up @@ -106,7 +106,7 @@ function fetchSource(module, callback) {
}

function getSource(metadata, module, onComplete, onProgress) {
if (module.path && !isPluginURI(module.id) && !isRelativeURI(module.path)) {
if (!isPluginURI(module.id) && !isRelativeURI(module.id)) {
module.isNative = true
delete module.path
delete module.uri
Expand Down

0 comments on commit a79c634

Please sign in to comment.