diff --git a/handlers/diffHandler.go b/handlers/diffHandler.go index 817079c..d328074 100644 --- a/handlers/diffHandler.go +++ b/handlers/diffHandler.go @@ -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 }