From fe03ee3dccfc86bf127a704198625b23f696b9d6 Mon Sep 17 00:00:00 2001 From: Mustaque Ahmed Date: Tue, 30 Sep 2025 17:39:59 +0530 Subject: [PATCH] fix: Appwrite URL typo fix --- src/Appwrite/Platform/Modules/Functions/Workers/Builds.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php b/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php index 890c8572d9..30e16a2666 100644 --- a/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php +++ b/src/Appwrite/Platform/Modules/Functions/Workers/Builds.php @@ -905,12 +905,12 @@ class Builds extends Action $configs = [ 'screenshotLight' => [ 'headers' => [ 'x-appwrite-hostname' => $rule->getAttribute('domain') ], - 'url' => 'http://appwrite/?appwrite-preview=1&appwrite-theme=light', + 'url' => 'http://appwrite.io/?appwrite-preview=1&appwrite-theme=light', 'theme' => 'light' ], 'screenshotDark' => [ 'headers' => [ 'x-appwrite-hostname' => $rule->getAttribute('domain') ], - 'url' => 'http://appwrite/?appwrite-preview=1&appwrite-theme=dark', + 'url' => 'http://appwrite.io/?appwrite-preview=1&appwrite-theme=dark', 'theme' => 'dark' ], ];