From e130c0063fc52c88d13e292ff3d60be19b71e89a Mon Sep 17 00:00:00 2001 From: IanWold Date: Sun, 13 Oct 2024 22:04:41 -0500 Subject: [PATCH] Correct reference to topicPosts --- build.csx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.csx b/build.csx index 3ba6c38..81bf763 100644 --- a/build.csx +++ b/build.csx @@ -159,7 +159,7 @@ new MetalsharpProject() { if (topicPosts.TryGetValue(topicName, out var topicPostsList)) { - seriesPosts[topicName] = [ ..topicPostsList, post.Metadata ]; + topicPosts[topicName] = [ ..topicPostsList, post.Metadata ]; } else {