Ignore failed pingTelemetry requests (#135)

This commit is contained in:
Mateusz Burzyński 2025-06-04 20:56:19 +02:00 committed by GitHub
parent b9176d9a58
commit c8d8301bf2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,7 +10,7 @@ export async function pingTelemetry(event: string, data: any) {
fetch('/api/ping-telemetry', {
method: 'POST',
body: JSON.stringify(requestBody),
});
}).catch(() => {});
}
// Manage telemetry events for a single chat message.