From 4158d3bd457c8cd27b2c642bc580aebb417d6cdd Mon Sep 17 00:00:00 2001 From: Vitor Pamplona Date: Mon, 8 Sep 2025 18:47:31 -0400 Subject: [PATCH] Fixes logs for account --- .../src/main/java/com/vitorpamplona/amethyst/model/Account.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt index ba52e6e7a..7f00d8630 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/model/Account.kt @@ -1785,7 +1785,7 @@ class Account( scope.launch { LocalCache.live.newEventBundles.collect { newNotes -> - logTime("Account ${userProfile()} newEventBundle Update with ${newNotes.size} new notes") { + logTime("Account ${userProfile().toBestDisplayName()} newEventBundle Update with ${newNotes.size} new notes") { upgradeAttestations() newNotesPreProcessor.runNew(newNotes) } @@ -1794,7 +1794,7 @@ class Account( scope.launch { LocalCache.live.deletedEventBundles.collect { newNotes -> - logTime("Account ${userProfile()} deletedEventBundle Update with ${newNotes.size} new notes") { + logTime("Account ${userProfile().toBestDisplayName()} deletedEventBundle Update with ${newNotes.size} new notes") { newNotesPreProcessor.runDeleted(newNotes) } }