From dc5e4562fdbcd0c57046bc1353e518d8335c761d Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 1 Aug 2026 17:22:31 +0000 Subject: [PATCH] fix: restore two Marmot log messages mangled during extraction The account-qualification regex in the AccountMarmotActions extraction also rewrote 'marmotManager is NULL' to 'account.marmotManager is NULL' inside two log string literals, changing log output text. Restore the original wording. Found by the post-refactor equivalence audit. Co-Authored-By: Claude Fable 5 Claude-Session: https://claude.ai/code/session_012sJgKJ4FAjcZqvkMc7U3EA --- .../com/vitorpamplona/amethyst/model/AccountMarmotActions.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/AccountMarmotActions.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/AccountMarmotActions.kt index 43029dfbc0..e45fd03764 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/AccountMarmotActions.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/AccountMarmotActions.kt @@ -278,7 +278,7 @@ class AccountMarmotActions( suspend fun publishMarmotKeyPackages() { val manager = account.marmotManager ?: run { - Log.w("MarmotDbg") { "publishMarmotKeyPackages: account.marmotManager is NULL — no-op" } + Log.w("MarmotDbg") { "publishMarmotKeyPackages: marmotManager is NULL — no-op" } return } if (!account.isWriteable()) { @@ -475,7 +475,7 @@ class AccountMarmotActions( } val manager = account.marmotManager ?: run { - Log.w("MarmotDbg") { "removeMarmotGroupMember: account.marmotManager is NULL — no-op" } + Log.w("MarmotDbg") { "removeMarmotGroupMember: marmotManager is NULL — no-op" } return } if (!account.isWriteable()) {