.Paginator.Pages.ByDate not working as expected?

Hi, I’ve been messing around with Hugo for the past month and think it’s pretty neat. But also found several bugs (at least I think I have).

The latest is that
{{ range .Paginator.Pages.ByDate }} still takes “weight” into account when sorting.

This is not the case if I write for example
{{ range .Paginator.Pages.ByTitle }}
Then “weight” is not considered.

I am under the impression that Pages.ByDate should ignore weight and only sort on the date, as specified here:

But I’ve been wrong before. Just wanted to check before I started filing bugs =)

Just looked at the code. It doesn’t.

Thanks for looking!
I managed to get it working (sort of) by giving the entry a negative weight (otherwise it is sorted below all my other, unweighted items instead of above), and the specifying .Paginator.Pages.ByDate.Reverse.

The paginator still shows the weighted entries in the bottom of page 1 however, disregarding the date of the unweighted entry…
I guess that’s something I can live with