Skip to content

Commit

Permalink
Fix Dispatch deser
Browse files Browse the repository at this point in the history
  • Loading branch information
chriso committed Jun 17, 2024
1 parent 255c1af commit 8c2c65c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion serde.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ type serializedDispatch struct {
}

func dispatchSerializer(s *types.Serializer, d *Dispatch) error {
types.SerializeT(s, &serializedDispatch{d.opts, d.functions})
types.SerializeT(s, serializedDispatch{d.opts, d.functions})
return nil
}

Expand Down

0 comments on commit 8c2c65c

Please sign in to comment.