# HG changeset patch # User Sascha L. Teichmann # Date 1552319284 -3600 # Node ID 0c400404a2372e079e8ab29266c811ab589892fb # Parent 5c6a7e69b02d0d5b516230c4ef61ca0666108b3a Morphological differences: Fixed type assertion for input json. diff -r 5c6a7e69b02d -r 0c400404a237 pkg/controllers/diff.go --- a/pkg/controllers/diff.go Mon Mar 11 16:42:38 2019 +0100 +++ b/pkg/controllers/diff.go Mon Mar 11 16:48:04 2019 +0100 @@ -95,7 +95,7 @@ begin := time.Now() start := begin - dci := input.(models.DiffCalculationInput) + dci := input.(*models.DiffCalculationInput) ctx := req.Context()