This commit is contained in:
2026-03-11 01:09:12 -04:00
parent dd60be6d2c
commit 064e195f2a
4 changed files with 84 additions and 0 deletions

View File

@@ -1,6 +1,8 @@
// coms/client/public/data.js
// Data module: holds the inmemory threads, notices and reply state
import { notifyNotice } from "./notifications.js";
// Map of all messages and notices by ID (string IDs)
// Clients own session ID
let myId = null;
@@ -139,6 +141,7 @@ function addNotice(content) {
children: [],
});
rootIds.push(id);
notifyNotice(content);
}
/**