1
0
mirror of git://jb55.com/damus synced 2024-09-29 16:30:44 +00:00

relay: use hostname in relay list instead of full URL

We already have the full relay URL under the name, we don't need to
repeat it and this is a bit cleaner.

Before:

wss://damus.io
wss://damus.io

After:

damus.io
wss://damus.io

Signed-off-by: William Casarin <jb55@jb55.com>
This commit is contained in:
William Casarin 2024-03-25 09:47:09 +00:00
parent d58d777541
commit 07c504f701

View File

@ -45,7 +45,7 @@ struct RelayView: View {
VStack(alignment: .leading) {
HStack {
Text(meta?.name ?? relay.absoluteString)
Text(meta?.name ?? relay.url.host() ?? relay.url.absoluteString)
.font(.headline)
.padding(.bottom, 2)
.lineLimit(1)