mirror of
https://github.com/vitorpamplona/amethyst.git
synced 2026-08-08 23:54:39 +00:00
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 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_012sJgKJ4FAjcZqvkMc7U3EA
This commit is contained in:
@@ -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()) {
|
||||
|
||||
Reference in New Issue
Block a user