🐛 Fix JSON serialization caused issue

This commit is contained in:
2025-07-25 02:58:13 +08:00
parent f2f6b192d6
commit d5fb00a8a9
12 changed files with 231 additions and 52 deletions

View File

@@ -281,7 +281,6 @@ public class PostController(
try
{
post = await ps.PostAsync(
currentUser,
post,
attachments: request.Attachments,
tags: request.Tags,

View File

@@ -72,7 +72,6 @@ public partial class PostService(
}
public async Task<Post> PostAsync(
Account user,
Post post,
List<string>? attachments = null,
List<string>? tags = null,