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;