diff options
Diffstat (limited to 'bug/op_create.go')
-rw-r--r-- | bug/op_create.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/bug/op_create.go b/bug/op_create.go index d5852db9..f3757f89 100644 --- a/bug/op_create.go +++ b/bug/op_create.go @@ -30,6 +30,9 @@ func (op *CreateOperation) Hash() (git.Hash, error) { } func (op *CreateOperation) Apply(snapshot *Snapshot) { + snapshot.addActor(op.Author) + snapshot.addParticipant(op.Author) + hash, err := op.Hash() if err != nil { // Should never error unless a programming error happened |