Jake Vanderwerf
2026-01-22 58e8ae0759ccfa97c478ccae4e0778bdce70966f
inc/rest/routes/FeedRoutes.php
@@ -32,12 +32,14 @@
      $this->cache_name = 'feed';
      $this->cache_ttl = 86400;
      parent::__construct();
      $this->cache->clear();
      if (JVB_TESTING) {
         $this->cache->clear();
      }
   }
   public function init():void
   {
      $this->cache->clear();
      $this->checker = Checker::getInstance();
      if (Features::hasIntegration('umami')) {
@@ -381,8 +383,7 @@
      $args = $this->applyOrderFilters($args, $data);
      $args = $this->applyDateFilters($args, $data);
      $args = $this->applyFavouritesFilter($args, $data);
      return $args;
      return $this->applyFavouritesFilter($args, $data);
   }
   protected function applyTaxonomyFilters(array $args, array $data): array