You're checking path but not method I expect
You're checking path but not method I expect

acceptWebSocket() does any storage operation, like reading something and updating it with the new socket, since it needs to somehow persist that.this.ctx.id.name to return me the string used when calling const stub = env.MY_DO.idFromName('foo') - it works fine if I try it on the stub (e.g. stub.name), but it doesn't work inside the DO itself if I try this.ctx.id.name - it's undefined. The ID itself is there, but considering the type is of DurableObjectId I expected to be able to get the name too - is this not the case?name available on there at all is really considering it can only be called right after you retrieved a DO with said string acceptWebSocket()acceptWebSocket()this.ctx.id.namethis.ctx.id.nameconst stub = env.MY_DO.idFromName('foo')stub.nameDurableObjectId