Skip to content

Commit

Permalink
fix for issue #64 : showed 10 bytes for followers id when showing pro…
Browse files Browse the repository at this point in the history
…file
  • Loading branch information
vishalxl committed Apr 21, 2024
1 parent 9142fb3 commit 9f507cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/console_ui.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 9f507cc

Please sign in to comment.