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."