Skip to content
Snippets Groups Projects
Commit b3caac45 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

fix(map): update episode markers query to discard unpublished episodes

parent 797e5327
No related branches found
No related tags found
No related merge requests found
...@@ -10,7 +10,6 @@ declare(strict_types=1); ...@@ -10,7 +10,6 @@ declare(strict_types=1);
namespace App\Controllers; namespace App\Controllers;
use App\Entities\Page;
use App\Models\EpisodeModel; use App\Models\EpisodeModel;
use CodeIgniter\HTTP\ResponseInterface; use CodeIgniter\HTTP\ResponseInterface;
...@@ -34,7 +33,9 @@ class MapMarkerController extends BaseController ...@@ -34,7 +33,9 @@ class MapMarkerController extends BaseController
{ {
$cacheName = 'episodes_markers'; $cacheName = 'episodes_markers';
if (! ($found = cache($cacheName))) { if (! ($found = cache($cacheName))) {
$episodes = (new EpisodeModel())->where('location_geo is not', null) $episodes = (new EpisodeModel())
->where('`published_at` <= NOW()', null, false)
->where('location_geo is not', null)
->findAll(); ->findAll();
$found = []; $found = [];
foreach ($episodes as $episode) { foreach ($episodes as $episode) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment