bnomei / kirby3-feed

Generate ATOM/JSON/RSS-Feed and XML-Sitemap from Pages-Collection
https://forum.getkirby.com/t/kirby3-feed-rss-json-sitemap/23574
MIT License
65 stars 8 forks source link

TypeError - Feed.php:160 - "date(): Argument #2 ($timestamp) must be of type ?int, bool given" #54

Closed tobimori closed 1 year ago

tobimori commented 1 year ago
    [
      'pattern' => 'sitemap.xml',
      'method' => 'GET',
      'action'  => function () {
        $feed = site()->index()->listed()->limit(50000)->sitemap(['images' => false, 'videos' => false]);
        return $feed;
      }
    ],

any idea?

bnomei commented 1 year ago

https://github.com/bnomei/kirby3-feed/blob/ae2668a9e037d46e54680b142c257bf8f578b14e/snippets/feed/sitemap.php#L17