unwrap eventprofileenvelope

This commit is contained in:
erinn 2021-03-16 15:16:04 -07:00
parent 6e4547c8bb
commit 1902944bc7
1 changed files with 2 additions and 2 deletions

View File

@ -246,11 +246,11 @@ func (eh *EventHandler) handleProfileEvent(ev *EventProfileEnvelope) string {
*/
}
json, _ := json.Marshal(downgrade(ev))
json, _ := json.Marshal(unwrap(ev))
return string(json)
}
func downgrade(original *EventProfileEnvelope) *event.Event {
func unwrap(original *EventProfileEnvelope) *event.Event {
unwrapped := &original.Event
unwrapped.Data["ProfileOnion"] = original.Profile
return unwrapped