Skip to content

Commit

Permalink
fix: closes #11 Extended diff error
Browse files Browse the repository at this point in the history
  • Loading branch information
Runar Kristoffersen committed Apr 26, 2022
1 parent bac97e6 commit 0c71327
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion handlers/diffHandler.go
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ func GetDiff(exportCache Cache) AppHandler {

if hashA != hashB {

c, err := diff.Diff(a, b, diff.DisableStructValues())
c, err := diff.Diff(a, b, diff.DisableStructValues(), diff.AllowTypeMismatch(true))
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 0c71327

Please sign in to comment.