mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-10-31 05:24:13 +00:00 
			
		
		
		
	merge: Fix Visiblity issue (!527)
View MR for information: https://activitypub.software/TransFem-org/Sharkey/-/merge_requests/527 Approved-by: dakkar <dakkar@thenautilus.net> Approved-by: Amelia Yukii <amelia.yukii@shourai.de>
This commit is contained in:
		
						commit
						5f4c7af4d1
					
				
					 1 changed files with 2 additions and 2 deletions
				
			
		|  | @ -146,8 +146,8 @@ export class MastoConverters { | |||
| 			display_name: user.name ?? user.username, | ||||
| 			locked: user.isLocked, | ||||
| 			created_at: this.idService.parse(user.id).date.toISOString(), | ||||
| 			followers_count: user.followersCount, | ||||
| 			following_count: user.followingCount, | ||||
| 			followers_count: profile?.ffVisibility === 'public' ? user.followersCount : 0, | ||||
| 			following_count: profile?.ffVisibility === 'public' ? user.followingCount : 0, | ||||
| 			statuses_count: user.notesCount, | ||||
| 			note: profile?.description ?? '', | ||||
| 			url: user.uri ?? acctUrl, | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue