Merge branch 'enh-13161' of https://github.com/kakkokari-gtyih/misskey into enh-13161
This commit is contained in:
		
						commit
						9c5c47080d
					
				|  | @ -24,6 +24,7 @@ | ||||||
| - Enhance: エンドポイント`admin/ad/update`の必須項目を`id`のみに | - Enhance: エンドポイント`admin/ad/update`の必須項目を`id`のみに | ||||||
| - Fix: notRespondingSinceが実装される前に不通になったインスタンスが自動的に配信停止にならない (#14059) | - Fix: notRespondingSinceが実装される前に不通になったインスタンスが自動的に配信停止にならない (#14059) | ||||||
| - Fix: FTT有効時、タイムライン用エンドポイントで`sinceId`にキャッシュ内最古のものより古いものを指定した場合に正しく結果が返ってこない問題を修正 | - Fix: FTT有効時、タイムライン用エンドポイントで`sinceId`にキャッシュ内最古のものより古いものを指定した場合に正しく結果が返ってこない問題を修正 | ||||||
|  | - Fix: 自分以外のクリップ内のノート個数が見えることがあるのを修正 | ||||||
| 
 | 
 | ||||||
| ## 2024.5.0 | ## 2024.5.0 | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
|  | @ -53,7 +53,7 @@ export class ClipEntityService { | ||||||
| 			isPublic: clip.isPublic, | 			isPublic: clip.isPublic, | ||||||
| 			favoritedCount: await this.clipFavoritesRepository.countBy({ clipId: clip.id }), | 			favoritedCount: await this.clipFavoritesRepository.countBy({ clipId: clip.id }), | ||||||
| 			isFavorited: meId ? await this.clipFavoritesRepository.exists({ where: { clipId: clip.id, userId: meId } }) : undefined, | 			isFavorited: meId ? await this.clipFavoritesRepository.exists({ where: { clipId: clip.id, userId: meId } }) : undefined, | ||||||
| 			notesCount: meId ? await this.clipNotesRepository.countBy({ clipId: clip.id }) : undefined, | 			notesCount: (meId === clip.userId) ? await this.clipNotesRepository.countBy({ clipId: clip.id }) : undefined, | ||||||
| 		}); | 		}); | ||||||
| 	} | 	} | ||||||
| 
 | 
 | ||||||
|  |  | ||||||
		Loading…
	
		Reference in New Issue