Skip to content

Commit

Permalink
Add parenthesis for account name and a hashtag for the collection id
Browse files Browse the repository at this point in the history
  • Loading branch information
sunkup authored and rfc2822 committed Oct 3, 2024
1 parent 2728981 commit 5fa1561
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -165,10 +165,10 @@ open class LocalAddressBook @AssistedInject constructor(
})
// Add the actual account name to the address book account name
serviceRepository.get(info.id)?.let { service ->
sb.append(" ${service.accountName}")
sb.append(" (${service.accountName})")
}
// Add the collection ID for uniqueness
sb.append(" (${info.id})")
sb.append(" #${info.id}")
return sb.toString()
}

Expand Down

0 comments on commit 5fa1561

Please sign in to comment.