Skip to content

Commit

Permalink
Merge pull request #48 from yoshuawuyts/fix-sub-name
Browse files Browse the repository at this point in the history
onAction: fix sub prefix
  • Loading branch information
yoshuawuyts committed Jul 8, 2016
2 parents c8fd64b + 4ed1c5f commit 6310c04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ function apply (ns, source, target, createSend, done) {
target[key] = source[key]
}
if (createSend && done) {
const send = createSend('subscription: ' + ns ? ns + ':' + key : key)
const send = createSend('subscription: ' + (ns ? ns + ':' + key : key))
source[key](send, done)
}
})
Expand Down

0 comments on commit 6310c04

Please sign in to comment.