mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00:00 
			
		
		
		
	Fix bug
This commit is contained in:
		
							parent
							
								
									251bf4bd61
								
							
						
					
					
						commit
						5875409841
					
				
					 2 changed files with 4 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -89,6 +89,9 @@ Misskey v12では、クライアントが設計し直され、全く新しいUI
 | 
			
		|||
* TypeError: Cannot read property 'stack' of undefined が出ることがある問題を修正
 | 
			
		||||
* AP: audience (visibility) パースの修正
 | 
			
		||||
* Pages: VERSION 変数が常に null な問題を修正
 | 
			
		||||
* Pages: MY_NOTES_COUNT 変数が常に null な問題を修正
 | 
			
		||||
* Pages: MY_FOLLOWERS_COUNT 変数が常に null な問題を修正
 | 
			
		||||
* Pages: MY_FOLLOWING_COUNT 変数が常に null な問題を修正
 | 
			
		||||
* Pages: DRPWPMが最初のしか出てこない問題を修正
 | 
			
		||||
 | 
			
		||||
11.37.1 (2020/01/07)
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -65,7 +65,7 @@ export class PageRepository extends Repository<Page> {
 | 
			
		|||
			createdAt: page.createdAt.toISOString(),
 | 
			
		||||
			updatedAt: page.updatedAt.toISOString(),
 | 
			
		||||
			userId: page.userId,
 | 
			
		||||
			user: Users.pack(page.user || page.userId),
 | 
			
		||||
			user: Users.pack(page.user || page.userId, me, { detail: true }),
 | 
			
		||||
			content: page.content,
 | 
			
		||||
			variables: page.variables,
 | 
			
		||||
			title: page.title,
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue