(fix): remove swallowed exception around tracking call

This commit is contained in:
Jake Barnby
2026-03-31 14:46:04 +13:00
parent dfb23612b0
commit 7bcd5b4ebc
+1 -5
View File
@@ -636,7 +636,6 @@ class Install extends Action
// Signal completion before tracking so the SSE stream
// finishes and the frontend can redirect immediately.
// Tracking is best-effort and must never block the user.
if ($onComplete) {
try {
$onComplete();
@@ -644,10 +643,7 @@ class Install extends Action
}
}
try {
$this->trackSelfHostedInstall($input, $isUpgrade, $version, $account);
} catch (\Throwable) {
}
$this->trackSelfHostedInstall($input, $isUpgrade, $version, $account);
if ($isCLI) {
Console::success('Appwrite installed successfully');