🐛 Fix building issue

This commit is contained in:
LittleSheep 2025-03-13 22:29:28 +08:00
parent d39e34b256
commit 5126855b1d

View File

@ -7,7 +7,6 @@ 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"
@ -66,7 +65,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: services.TruncatePostContent(post),
Data: TruncatePostContent(*post),
CreatedAt: post.CreatedAt,
}
})