From 251de2bf9c47c8799c9c76ae8a533f646d595b7d Mon Sep 17 00:00:00 2001 From: nick-delirium Date: Thu, 29 Aug 2024 17:49:37 +0200 Subject: [PATCH] fix spot name --- spot/entrypoints/background.ts | 4 ++-- spot/public/_locales/en/messages.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/spot/entrypoints/background.ts b/spot/entrypoints/background.ts index 9b3259116..359ae65e5 100644 --- a/spot/entrypoints/background.ts +++ b/spot/entrypoints/background.ts @@ -171,7 +171,7 @@ export default defineBackground(() => { } return true; } - const resp = await fetch(`${ingest}/api/spot/refresh`, { + const resp = await fetch(`${ingest}/spot/refresh`, { method: "GET", headers: { Authorization: `Bearer ${jwtToken}`, @@ -461,7 +461,7 @@ export default defineBackground(() => { } if (!pingInt) { pingInt = setInterval(() => { - void pingJWT(); + void pingJWT(url); }, PING_INT) } }); diff --git a/spot/public/_locales/en/messages.json b/spot/public/_locales/en/messages.json index c2cf4764f..23dd17b86 100644 --- a/spot/public/_locales/en/messages.json +++ b/spot/public/_locales/en/messages.json @@ -1,6 +1,6 @@ { "extName": { - "message": "Spot" + "message": "OpenReplay Spot" }, "extDescription": { "message": "Spot enables a super-fast way to report bugs, providing engineers with all the context they need to fix them."