From 98bfa2751b66a5004938ba500d65bddf49abe5a3 Mon Sep 17 00:00:00 2001 From: grandeljay Date: Thu, 23 Jun 2022 20:33:31 +0200 Subject: [PATCH] Fix double quotes on wish image --- src/api/wishes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/api/wishes.php b/src/api/wishes.php index c42d4c60..373c71b0 100644 --- a/src/api/wishes.php +++ b/src/api/wishes.php @@ -165,7 +165,7 @@ switch ($_SERVER['REQUEST_METHOD']) { $codeImage = URL::getResponseCode($info->image); if ($codeImage >= 200 && $codeImage < 400) { - $wish_image = '"' . $info->image . '"'; + $wish_image = $info->image; } } }