hook up profile lock/bot icons

This commit is contained in:
ari melody 2025-07-14 01:41:02 +01:00
parent 77665702b7
commit d8efaccb30
Signed by: ari
GPG key ID: CF99829C92678188
3 changed files with 30 additions and 6 deletions

View file

@ -33,6 +33,8 @@ export function parseAccount(data) {
account.following_count = data.following_count;
account.posts_count = data.statuses_count;
account.bio = data.note;
account.bot = data.bot;
account.locked = data.locked;
if (data.acct.includes('@'))
account.host = data.acct.split('@')[1];