feat: Update appID
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
moanos [he/him] 2025-04-17 00:13:21 +02:00
parent a4a6fc4bb9
commit 17e1415136

View File

@ -32,16 +32,17 @@ function getOrCreateUUID() {
// Send Test Signals when running locally // Send Test Signals when running locally
function init() { function init() {
const appId = "E453AAB8-B1AD-4F3E-87DF-97FC3A0400B9";
if (location.hostname === "localhost" || location.hostname === "127.0.0.1") { if (location.hostname === "localhost" || location.hostname === "127.0.0.1") {
const td = new TelemetryDeck({ const td = new TelemetryDeck({
appID: '4A88C6F5-2BDE-489E-9834-34D89FD5473F', appID: appId,
clientUser: getOrCreateUUID(), clientUser: getOrCreateUUID(),
testMode: true testMode: true
}); });
return td; return td;
} else { } else {
const td = new TelemetryDeck({ const td = new TelemetryDeck({
appID: '4A88C6F5-2BDE-489E-9834-34D89FD5473F', appID: appId,
clientUser: getOrCreateUUID() clientUser: getOrCreateUUID()
}); });
return td; return td;