🐛 Fix post in feed did not got turncated

This commit is contained in:
LittleSheep 2025-03-13 22:27:49 +08:00
parent f769c5c5b5
commit d39e34b256

View File

@ -7,6 +7,7 @@ import (
"git.solsynth.dev/hypernet/interactive/pkg/internal/database"
"git.solsynth.dev/hypernet/interactive/pkg/internal/models"
"git.solsynth.dev/hypernet/interactive/pkg/internal/services"
"github.com/gofiber/fiber/v2"
"github.com/samber/lo"
"gorm.io/gorm"
@ -65,7 +66,7 @@ func ListPostForFeed(tx *gorm.DB, limit int, user *uint) ([]FeedEntry, error) {
entries := lo.Map(posts, func(post *models.Post, _ int) FeedEntry {
return FeedEntry{
Type: "interactive.post",
Data: post,
Data: services.TruncatePostContent(post),
CreatedAt: post.CreatedAt,
}
})