From 44cd545b37fbedfb9f9c37706b726e2655e9c51e Mon Sep 17 00:00:00 2001 From: Ro Date: Tue, 29 Aug 2023 14:14:30 -0700 Subject: [PATCH] Forgot to encode the json. oops --- app/Http/Controllers/LocationController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/LocationController.php b/app/Http/Controllers/LocationController.php index d2f7eb7..3b056eb 100644 --- a/app/Http/Controllers/LocationController.php +++ b/app/Http/Controllers/LocationController.php @@ -99,8 +99,8 @@ class LocationController extends Controller 'rating' => $item[1], 'added_by' => 1, 'tags' => 'poor moderation, hate speech', + 'images' => json_encode($images), 'block_count' => $blockcount, - 'images' => $images, ]); } }