tpl/collections: Fix handling of different interface types in Slice
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Tue, 2 Oct 2018 15:35:33 +0000 (17:35 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Wed, 10 Oct 2018 10:21:42 +0000 (12:21 +0200)
commite2201ef15fdefe257ad284b2df4ccc8f8c38fac2
treef8848987f17cd5cd49e7e9ed248c86df0d6c02c9
parent398996e8b05e517ea3ffa1097c24799b945123d3
tpl/collections: Fix handling of different interface types in Slice

In Hugo `0.49` we improved type support in `slice`. This has an unfortunate side effect in that `resources.Concat` now expects something that can resolve to `resource.Resources`.

This worked for most situations, but when you try to `slice` different `Resource` objects, you would be getting `[]interface {}` and not `resource.Resources`. And `concat` would fail:

```bash
error calling Concat: slice []interface {} not supported in concat.
```

This commit fixes that by simplifying the type checking logic in `Slice`:

* If the first item implements the `Slicer` interface, we try that
* If the above fails or the first item does not implement `Slicer`, we just return the `[]interface {}`

Fixes #5269
hugolib/resource_chain_test.go
tpl/collections/collections.go
tpl/collections/collections_test.go