Skip to content

Commit

Permalink
[nools/lib] Add missing linebreak
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Oct 29, 2018
1 parent 2170e01 commit acc3cb2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/nools/lib.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,8 @@ function emitContactBasedTargetFor(c, targetConfig) {
var pass = !targetConfig.passesIf || !!targetConfig.passesIf(c);

var instance = createTargetInstance(targetConfig.id, c.contact, pass);
instance.date = targetConfig.date ? targetConfig.date(c) : now.getTime(); emitTargetInstance(instance);
instance.date = targetConfig.date ? targetConfig.date(c) : now.getTime();
emitTargetInstance(instance);
}

function emitReportBasedTargetFor(c, r, targetConf) {
Expand Down

0 comments on commit acc3cb2

Please sign in to comment.