feat(settings): pinnedThreadIds in user prefs (v0.8.99)

Store thread channel ids pinned in the Active Threads panel for mesh
sync via USER_PREFS_UPDATE.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-22 11:53:32 -04:00
co-authored by Cursor
parent b8e0e99c8d
commit d0a01c974f
+3 -1
View File
@@ -27,7 +27,9 @@ const DEFAULT_USER_PREFS = {
composeDrafts: {},
companionLastGuildId: null,
/** @type {Record<string, { online: number, at: number }>} */
guildPresenceCache: {}
guildPresenceCache: {},
/** Thread channel ids pinned in Active Threads panel (v0.8.99). */
pinnedThreadIds: []
}
class PearcordSettings extends EventEmitter {