This commit is contained in:
mertalev
2025-05-06 14:55:00 -04:00
parent 606d4b66d0
commit 4174575785
3 changed files with 3 additions and 3 deletions

View File

@@ -79,7 +79,7 @@ export const toResponseDto = (...timelineAsset: TimelineAsset[]) => {
bucketAssets.ownerId.push(asset.ownerId);
bucketAssets.projectionType.push(asset.projectionType!);
bucketAssets.ratio.push(asset.ratio);
bucketAssets.stack?.push(asset.stack ? [asset.stack.id, asset.stack.assetCount] : null);
bucketAssets.stack?.push(asset.stack ? [asset.stack.id, asset.stack.assetCount.toString()] : null);
bucketAssets.thumbhash.push(asset.thumbhash!);
}