unwrap eventprofileenvelope #11

Merged
dan merged 2 commits from rinnmar16 into trunk 2021-03-16 22:16:37 +00:00
1 changed files with 7 additions and 1 deletions

View File

@ -246,10 +246,16 @@ func (eh *EventHandler) handleProfileEvent(ev *EventProfileEnvelope) string {
*/
}
json, _ := json.Marshal(ev)
json, _ := json.Marshal(unwrap(ev))
return string(json)
}
func unwrap(original *EventProfileEnvelope) *event.Event {
unwrapped := &original.Event
unwrapped.Data["ProfileOnion"] = original.Profile
return unwrapped
}
func (eh *EventHandler) startHandlingPeer(onion string) {
eventBus := eh.app.GetEventBus(onion)
q := event.NewQueue()