fix: getShortHandle
parent
f3ebdf3123
commit
bced99e14b
|
@ -47,8 +47,9 @@ export function getDisplayName(account?: Account, options?: { rich?: boolean })
|
||||||
return displayName.replace(/:([\w-]+?):/g, '')
|
return displayName.replace(/:([\w-]+?):/g, '')
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getShortHandle(account: Account) {
|
export function getShortHandle({ acct }: Account) {
|
||||||
return `@${account.acct}`
|
|
||||||
|
return `@${acct.includes('@') ? acct.split('@')[0] : acct}`
|
||||||
}
|
}
|
||||||
|
|
||||||
export function getFullHandle(account: Account) {
|
export function getFullHandle(account: Account) {
|
||||||
|
|
Loading…
Reference in New Issue