diff options
author | Jan Dittberner <jan@dittberner.info> | 2017-04-21 02:25:49 +0200 |
---|---|---|
committer | Jan Dittberner <jan@dittberner.info> | 2017-04-22 00:14:08 +0200 |
commit | 2cac50ee86e70428aa06c99f5e009ceaaf1dbc13 (patch) | |
tree | ada4eb330be62598445480b6f40a5633ddfa922f /jobs.go | |
parent | b6ad5d8ad327066b21bdb690f5a5017f6bed9740 (diff) | |
download | cacert-boardvoting-2cac50ee86e70428aa06c99f5e009ceaaf1dbc13.tar.gz cacert-boardvoting-2cac50ee86e70428aa06c99f5e009ceaaf1dbc13.tar.xz cacert-boardvoting-2cac50ee86e70428aa06c99f5e009ceaaf1dbc13.zip |
Implement proxy voting
Diffstat (limited to 'jobs.go')
-rw-r--r-- | jobs.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -142,7 +142,7 @@ func (j *RemindVotersJob) Run() { return } if len(*decisions) > 0 { - voterMail <- &RemindVoterNotification{voter: voter, decisions: *decisions} + NotifyMailChannel <- &RemindVoterNotification{voter: voter, decisions: *decisions} } } } |