common/collections: Allow a mix of slice types in append/Scratch.Add
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 27 Oct 2018 09:10:39 +0000 (11:10 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sat, 27 Oct 2018 13:05:40 +0000 (15:05 +0200)
commitdac7092a9cb22d59db28fb15af15f7b14ff47588
treee001634ebe4e108abe710a24efe22a85e4568bbf
parentb27ccf34bf4e5ee618a66fa11c68a9690e395034
common/collections: Allow a mix of slice types in append/Scratch.Add

The type handling in these was improved in Hugo 0.49, but this also meant that it was no longer possible to start out with a string slice and later append `Page` etc. to it.

This commit makes sure that the old behaviour is now possible again by falling back to a `[]interface{}` as a last resort.

Fixes #5361
common/collections/append.go
common/collections/append_test.go
common/maps/scratch_test.go