diff --git a/DysonNetwork.Sphere/Post/PostService.cs b/DysonNetwork.Sphere/Post/PostService.cs index 40c9ab2..5c7338a 100644 --- a/DysonNetwork.Sphere/Post/PostService.cs +++ b/DysonNetwork.Sphere/Post/PostService.cs @@ -342,7 +342,7 @@ public partial class PostService( // If embeds were added, update the post in the database if (updatedPost.Meta != null && updatedPost.Meta.TryGetValue("embeds", out var embeds) && - embeds is List { Count: > 0 } embedsList) + embeds is List> { Count: > 0 } embedsList) { // Get a fresh copy of the post from the database var dbPost = await dbContext.Posts.FindAsync(post.Id);