Skip to content

Commit

Permalink
Fixing issues before release 0.20.14
Browse files Browse the repository at this point in the history
  • Loading branch information
TwitchBronBron committed Dec 7, 2023
1 parent 121f047 commit 01fba07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/RendezvousTracker.ts
Expand Up @@ -201,7 +201,7 @@ export class RendezvousTracker {
this.logger.info(`Sending ECP rendezvous request:`, url);
// Send rendezvous query to ECP
const rendezvousQuery = await util.httpGet(url);
let rendezvousQueryData = rendezvousQuery.body;
let rendezvousQueryData = rendezvousQuery.body as string;
let ecpData: EcpRendezvousData = {
trackingEnabled: false,
items: []
Expand Down

0 comments on commit 01fba07

Please sign in to comment.