Skip to content

Commit 9f507cc

Browse files
committed
fix for issue #64 : showed 10 bytes for followers id when showing profile
1 parent 9142fb3 commit 9f507cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/console_ui.dart

+1-1
Original file line numberDiff line numberDiff line change
@@ -394,7 +394,7 @@ void printProfile(Store node, String profilePubkey) {
394394
stdout.write("$pronoun follow ${profileContactEvent.eventData.contactList.length} accounts: ");
395395
profileContactEvent.eventData.contactList.sort();
396396
for (var x in profileContactEvent.eventData.contactList) {
397-
stdout.write("${getAuthorName(x.contactPubkey)}, ");
397+
stdout.write("${getAuthorName(x.contactPubkey, pubkeyLenShown: 10)}, ");
398398
}
399399
print("\n");
400400
} else {

0 commit comments

Comments
 (0)