From 9c77ecce4bf119e34ded5c05198ed6f14513cde3 Mon Sep 17 00:00:00 2001 From: jim Date: Tue, 5 May 2026 18:07:19 -0500 Subject: [PATCH] fix: color no-replies messages yellow for visual distinction --- URLNotesGrabberCORE/Program.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/URLNotesGrabberCORE/Program.cs b/URLNotesGrabberCORE/Program.cs index c19e4f1..e297a39 100644 --- a/URLNotesGrabberCORE/Program.cs +++ b/URLNotesGrabberCORE/Program.cs @@ -474,8 +474,10 @@ namespace URLNotesGrabberCORE Console.WriteLine($"[Reply Text] Notes count: {postsResponse.response.notes?.Count ?? 0}"); } - // Mark all replies for this post with '?' to indicate API returned no posts + var previousColor = Console.ForegroundColor; + Console.ForegroundColor = ConsoleColor.Yellow; Console.WriteLine($"[Reply Text] Marking all replies for {blogName}/{postID} with '?' due to no notes in response"); + Console.ForegroundColor = previousColor; DataAccess.UpdateAllNoteReplyTextForPost(blogName, postID, "?"); return;