From 9f507cc5390931702c50e6de6a6b3528de583093 Mon Sep 17 00:00:00 2001 From: Vishal <64505169+vishalxl@users.noreply.github.com> Date: Sun, 21 Apr 2024 19:06:15 +0530 Subject: [PATCH] fix for issue #64 : showed 10 bytes for followers id when showing profile --- lib/console_ui.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/console_ui.dart b/lib/console_ui.dart index 59071a0..7ff0d57 100644 --- a/lib/console_ui.dart +++ b/lib/console_ui.dart @@ -394,7 +394,7 @@ void printProfile(Store node, String profilePubkey) { stdout.write("$pronoun follow ${profileContactEvent.eventData.contactList.length} accounts: "); profileContactEvent.eventData.contactList.sort(); for (var x in profileContactEvent.eventData.contactList) { - stdout.write("${getAuthorName(x.contactPubkey)}, "); + stdout.write("${getAuthorName(x.contactPubkey, pubkeyLenShown: 10)}, "); } print("\n"); } else {