Skip to content

Commit

Permalink
Fix migrating flows with localization
Browse files Browse the repository at this point in the history
  • Loading branch information
rowanseymour committed Mar 15, 2018
1 parent d50f3ac commit a51d25d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flows/definition/flow.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func (f *flow) MarshalJSON() ([]byte, error) {
}

if f.localization != nil {
fe.Localization = *f.localization.(*localization)
fe.Localization = f.localization.(localization)
}

fe.Nodes = make([]*node, len(f.nodes))
Expand Down

0 comments on commit a51d25d

Please sign in to comment.