From c51721505f804dd5c40227105a9faf52962656f2 Mon Sep 17 00:00:00 2001
From: LittleSheep <littlesheep.code@hotmail.com>
Date: Sun, 30 Mar 2025 00:26:24 +0800
Subject: [PATCH] :bug: Fixed attachment loading in ListPostV2

---
 pkg/internal/services/queries/posts.go |  8 +++++---
 settings.toml                          | 10 +++++-----
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/pkg/internal/services/queries/posts.go b/pkg/internal/services/queries/posts.go
index 72686fa..6266f7c 100644
--- a/pkg/internal/services/queries/posts.go
+++ b/pkg/internal/services/queries/posts.go
@@ -1,8 +1,8 @@
 package queries
 
 import (
-	"encoding/json"
 	"fmt"
+	"github.com/goccy/go-json"
 
 	"git.solsynth.dev/hypernet/interactive/pkg/internal/database"
 	"git.solsynth.dev/hypernet/interactive/pkg/internal/gap"
@@ -90,10 +90,12 @@ func ListPostV2(tx *gorm.DB, take int, offset int, order any, user *uint) ([]mod
 	var attachmentsRid []string
 	var usersId []uint
 
-	// Scan records that can be load egearly
+	// Scan records that can be load eagerly
 	var bodies []models.PostStoryBody
 	{
-		raw, _ := json.Marshal(posts)
+		raw, _ := json.Marshal(lo.Map(posts, func(item models.Post, _ int) map[string]any {
+			return item.Body
+		}))
 		json.Unmarshal(raw, &bodies)
 	}
 	for idx, info := range posts {
diff --git a/settings.toml b/settings.toml
index 6039423..20a6ed6 100644
--- a/settings.toml
+++ b/settings.toml
@@ -14,8 +14,8 @@ print_routes = false
 [security]
 internal_public_key = "keys/internal_public_key.pem"
 
-[[fediverse.friends]]
-id = "mastodon-social"
-url = "https://mastodon.social"
-type = "mastodon"
-batch_size = 50
+#[[fediverse.friends]]
+#id = "mastodon-social"
+#url = "https://mastodon.social"
+#type = "mastodon"
+#batch_size = 50