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; }