tpl/collections: Unwrap any interface value in sort and where
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Mon, 27 May 2019 20:57:57 +0000 (22:57 +0200)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Sun, 9 Jun 2019 14:54:36 +0000 (16:54 +0200)
commit8d898ad6672e0ccb62c5a29b6fccab24d980f104
treecc937519b8b2008ff7311ab6af6b9685c4756f62
parentfad183c4ae55069be9246e64ab1c8b2f43d08d06
tpl/collections: Unwrap any interface value in sort and where

Hugo `0.55.0` introduced some new interface types for `Page` etc.

This worked great in general, but there were cases where this would fail in `where` and `sort`.

One such example would be sorting by `MenuItem.Page.Date` where `Page` on `MenuItem` was a small subset of the bigger `page.Page` interface.

This commit fixes that by unwrapping such interface values.

Fixes #5989
hugolib/menu_test.go
tpl/collections/collections_test.go
tpl/collections/where.go
tpl/collections/where_test.go