Actualiser js/public.js
This commit is contained in:
+5
-1
@@ -50,7 +50,11 @@ function generateStreamingSelect() {
|
|||||||
async function loadPublicData() {
|
async function loadPublicData() {
|
||||||
try {
|
try {
|
||||||
const response = await fetch(`${API_URL}?action=get_films`, { cache: 'default' });
|
const response = await fetch(`${API_URL}?action=get_films`, { cache: 'default' });
|
||||||
films = await response.json();
|
const data = await response.json();
|
||||||
|
|
||||||
|
// ✅ CORRECTION : Fusionner les deux tableaux en un seul
|
||||||
|
films = [...(data.critique || []), ...(data.videotheque || [])];
|
||||||
|
|
||||||
generateStreamingSelect();
|
generateStreamingSelect();
|
||||||
|
|
||||||
// Écouteur pour le filtre physique
|
// Écouteur pour le filtre physique
|
||||||
|
|||||||
Reference in New Issue
Block a user