mirror of
https://github.com/gohugoio/hugo.git
synced 2024-05-11 05:54:58 +00:00
The `intersect` function uses `in` to avoid adding duplicates to the resulting set. We were passing `reflect.Value` items when we should have been using `Value.Interface()` to send the actual data structure. This fixes that. See #1952