Skip to content

Commit

Permalink
fix(resource-coordinator): incorrectly setting analyzed module ids
Browse files Browse the repository at this point in the history
  • Loading branch information
EisenbergEffect committed Jan 23, 2015
1 parent e9c4cb3 commit 7fa4735
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/resource-coordinator.js
Original file line number Diff line number Diff line change
Expand Up @@ -199,10 +199,12 @@ class ResourceModule {
org = Origin.get(element.value);
}else if(resources.length){
org = Origin.get(resources[0].value);
}else{
org = Origin.get(source);
}

if(org){
this.id = org.id;
this.id = org.moduleId;
}
}

Expand Down

0 comments on commit 7fa4735

Please sign in to comment.