From 6ea9cfc8034b6af376d1e9371e2e23e3b0aabe44 Mon Sep 17 00:00:00 2001 From: Adrian Wannenmacher Date: Fri, 27 Feb 2026 18:01:22 +0100 Subject: [PATCH] add documentation to session id setter --- models/session.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/models/session.js b/models/session.js index dbe8584..fadd7ba 100644 --- a/models/session.js +++ b/models/session.js @@ -30,7 +30,8 @@ export default class Session extends EventTarget { /** Set the ID of this session. * - * Note that an existing ID cannot be overwritten. + * Note that an existing ID cannot be overwritten. Setting an ID also doesn't + * trigger the `Session.EVENT_CHANGE` event. */ set id(value) { if (this.#id !== null)