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

Commit

Permalink
use getAll instead of resolveAll for retrieval of participants
Browse files Browse the repository at this point in the history
Signed-off-by: marcus <wittigmarcus@gmail.com>
  • Loading branch information
mwittig committed Nov 28, 2017
1 parent 4b1efe9 commit e988467
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ module.exports = function (RED) {
.then((participantRegistry) => {
node.log('got participant registry');
if (id == null) {
return assetRegistry.resolveAll();
return assetRegistry.getAll();
}
else {
return participantRegistry.get(id);
Expand Down

0 comments on commit e988467

Please sign in to comment.