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

Commit

Permalink
ensure getcanonicalName arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jan 25, 2016
1 parent 5ad8bf0 commit be382b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/trace.js
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ Trace.prototype.getLoadRecord = function(canonical, excludeURLs, parentStack) {
if (loader.pluginFirst)
pathCanonical = getCanonicalName(loader, metadata.loader) + '!' + pathCanonical;
else
pathCanonical = pathCanonical + '!' + getCanonicalName(metadata.loader);
pathCanonical = pathCanonical + '!' + getCanonicalName(loader, metadata.loader);
}
branches[interpolate] = pathCanonical;
});
Expand Down

0 comments on commit be382b2

Please sign in to comment.