From cbb96f8b82771e2e17ac4c2f0d583cfa0f0c9155 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Matej=20Ba=C4=8Do?= Date: Thu, 20 Nov 2025 17:40:56 +0100 Subject: [PATCH] AI review fixes --- .../Platform/Modules/Functions/Http/Functions/Update.php | 2 +- src/Appwrite/Platform/Modules/Sites/Http/Sites/Update.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Platform/Modules/Functions/Http/Functions/Update.php b/src/Appwrite/Platform/Modules/Functions/Http/Functions/Update.php index e7a19cb9fd..df5dd3adf5 100644 --- a/src/Appwrite/Platform/Modules/Functions/Http/Functions/Update.php +++ b/src/Appwrite/Platform/Modules/Functions/Http/Functions/Update.php @@ -246,7 +246,7 @@ class Update extends Base $specsChanged = false; if ($function->getAttribute('runtimeSpecification') !== $runtimeSpecification) { $specsChanged = true; - } elseif ($function->getAttribute('buildbuildSpecification') !== $buildSpecification) { + } elseif ($function->getAttribute('buildSpecification') !== $buildSpecification) { $specsChanged = true; } diff --git a/src/Appwrite/Platform/Modules/Sites/Http/Sites/Update.php b/src/Appwrite/Platform/Modules/Sites/Http/Sites/Update.php index 734c78385a..47fc29d041 100644 --- a/src/Appwrite/Platform/Modules/Sites/Http/Sites/Update.php +++ b/src/Appwrite/Platform/Modules/Sites/Http/Sites/Update.php @@ -244,7 +244,7 @@ class Update extends Base $specsChanged = false; if ($site->getAttribute('runtimeSpecification') !== $runtimeSpecification) { $specsChanged = true; - } elseif ($site->getAttribute('buildbuildSpecification') !== $buildSpecification) { + } elseif ($site->getAttribute('buildSpecification') !== $buildSpecification) { $specsChanged = true; }