mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	fix: createdAt
This commit is contained in:
		
							parent
							
								
									8f219557d4
								
							
						
					
					
						commit
						243527b2c8
					
				
					 2 changed files with 3 additions and 0 deletions
				
			
		| 
						 | 
				
			
			@ -15,6 +15,7 @@ namespace Entity {
 | 
			
		|||
    suspended: boolean | null
 | 
			
		||||
    limited: boolean | null
 | 
			
		||||
    created_at: string
 | 
			
		||||
    createdAt: string | null
 | 
			
		||||
    followers_count: number
 | 
			
		||||
    following_count: number
 | 
			
		||||
    statuses_count: number
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -88,6 +88,7 @@ namespace MisskeyAPI {
 | 
			
		|||
        suspended: null,
 | 
			
		||||
        limited: null,
 | 
			
		||||
        created_at: '',
 | 
			
		||||
        createdAt: new Date().toUTCString(),
 | 
			
		||||
        followers_count: 0,
 | 
			
		||||
        following_count: 0,
 | 
			
		||||
        statuses_count: 0,
 | 
			
		||||
| 
						 | 
				
			
			@ -124,6 +125,7 @@ namespace MisskeyAPI {
 | 
			
		|||
        suspended: null,
 | 
			
		||||
        limited: null,
 | 
			
		||||
        created_at: u.createdAt ? u.createdAt : new Date().toUTCString(),
 | 
			
		||||
        createdAt: u.createdAt ? u.createdAt : new Date().toUTCString(),
 | 
			
		||||
        followers_count: u.followersCount,
 | 
			
		||||
        following_count: u.followingCount,
 | 
			
		||||
        statuses_count: u.notesCount,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue