Skip to content

Commit 1809fb8

Browse files
chore: update websocket url
1 parent 88b31a2 commit 1809fb8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/inbox.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export class Inbox implements vscode.Disposable {
4141

4242
const baseUrl = new URL(baseUrlRaw)
4343
const socketProto = baseUrl.protocol === "https:" ? "wss:" : "ws:"
44-
const socketUrlRaw = `${socketProto}//${baseUrl.host}/api/v2/notifications/watch`
44+
const socketUrlRaw = `${socketProto}//${baseUrl.host}/api/v2/notifications/inbox/watch`
4545

4646
const coderSessionTokenHeader = "Coder-Session-Token"
4747
this.socket = new WebSocket(new URL(socketUrlRaw), {

0 commit comments

Comments
 (0)