Skip to content

Commit

Permalink
Fix api key creation
Browse files Browse the repository at this point in the history
  • Loading branch information
SurgeCode committed Dec 5, 2024
1 parent 7e989a6 commit cc9bc3c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/services/tunnel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export class TunnelService {
await this.updateBitteConfig({ url: this.tunnelUrl });
await new Promise((resolve) => setTimeout(resolve, 1000));

const signedMessage = await this.pluginService.auth.getSignedMessage();
const signedMessage = await this.pluginService.auth.authenticateOrCreateKey();
if (!signedMessage) {
throw new Error("Failed to authenticate or create a key.");
}
Expand Down

0 comments on commit cc9bc3c

Please sign in to comment.