Just found a bug in CronTrendsService.trending().... apparently it's not a good idea to add/remove elements from a list while you're iterating through it :)
When the view cleanup job runs, it's removing the stream view entries from the list as it iterates through the list... so I'll need to store the entries in a separate list and remove them after the loop completes.
I'll also create the /trending page today.
Just found a bug in CronTrendsService.trending().... apparently it's not a good idea to add/remove elements from a list while you're iterating through it :)
When the view cleanup job runs, it's removing the stream view entries from the list as it iterates through the list... so I'll need to store the entries in a separate list and remove them after the loop completes. I'll also create the /trending page today.