Merge pull request #41 from outis1one/claude/read-repo-YMu21

v0.9.4: Reveal mode fix, MIT license, test suite CSP fix
This commit is contained in:
Outis
2026-03-28 21:21:50 -04:00
committed by GitHub
7 changed files with 44 additions and 57 deletions
+4 -1
View File
@@ -154,7 +154,10 @@
const val = changes.ss_identity.newValue;
if (!val?._ssLocalEncrypted) msg.identity = mergeProfiles(val);
}
if (changes.ss_settings) msg.settings = changes.ss_settings.newValue;
if (changes.ss_settings) {
const val = changes.ss_settings.newValue;
if (!val?._ssLocalEncrypted) msg.settings = val;
}
// Only post if we have something meaningful to send
if (msg.mappings || msg.identity || msg.settings) {