barnesoir/chatgpt-vscode-plugin

reset token does not work

alexanderkjeldaas opened this issue · 1 comments

The view does conditional setup of the token so it will not catch that it was reset. Better to do this unconditionally.

        // Initialize session token and ChatGPT API if not done already
        if (!this.sessionToken) {
            await this.setUpSessionToken();
        }

Good spot

42de560