We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 474b906 commit d695588Copy full SHA for d695588
src/inbox.ts
@@ -35,7 +35,7 @@ export class Inbox implements vscode.Disposable {
35
// be an invalid URL, that would've caused issues before we got to here.
36
const baseUrl = new URL(baseUrlRaw)
37
const socketProto = baseUrl.protocol === "https:" ? "wss:" : "ws:"
38
- const socketUrl = `${socketProto}//${baseUrl.host}/api/v2/notifications/inbox/watch?templates=${watchTemplatesParam}&targets=${watchTargetsParam}`
+ const socketUrl = `${socketProto}//${baseUrl.host}/api/v2/notifications/inbox/watch?format=plaintext&templates=${watchTemplatesParam}&targets=${watchTargetsParam}`
39
40
const coderSessionTokenHeader = "Coder-Session-Token"
41
this.#socket = new WebSocket(new URL(socketUrl), {
0 commit comments