From 81eb0f85073c7612029b338cc3d8828169bc66d8 Mon Sep 17 00:00:00 2001 From: Khushboo Verma <43381712+vermakhushboo@users.noreply.github.com> Date: Tue, 16 Jul 2024 16:33:34 +0530 Subject: [PATCH] Small fix --- src/Appwrite/Utopia/Fetch/BodyMultipart.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Appwrite/Utopia/Fetch/BodyMultipart.php b/src/Appwrite/Utopia/Fetch/BodyMultipart.php index 170de835a7..dab7773565 100644 --- a/src/Appwrite/Utopia/Fetch/BodyMultipart.php +++ b/src/Appwrite/Utopia/Fetch/BodyMultipart.php @@ -136,7 +136,7 @@ class BodyMultipart } $query .= $eol . $eol; - $query .= $value == false ? 0 . $eol : $value . $eol; + $query .= $value === false ? 0 . $eol : $value . $eol; $query .= '--' . $this->boundary; }