this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix quick bug

dholms 5d5d1450 bf8d6583

+6 -4
+4 -2
nexus/processor.go
··· 221 221 } 222 222 223 223 userEvt := &UserEvt{ 224 - Did: did, 225 - Handle: handleStr, 224 + Did: did, 225 + Handle: handleStr, 226 + IsActive: curr.Status == models.AccountStatusActive, 227 + Status: curr.Status, 226 228 } 227 229 228 230 if err := ep.Outbox.SendUserEvt(userEvt); err != nil {
+2 -2
nexus/types.go
··· 52 52 53 53 type OutboxEvt struct { 54 54 Type string `json:"type"` 55 - RecordEvt *RecordEvt `json:"evt,omitempty"` 56 - UserEvt *UserEvt `json:"evt,omitempty"` 55 + RecordEvt *RecordEvt `json:"record,omitempty"` 56 + UserEvt *UserEvt `json:"user,omitempty"` 57 57 }