fix: color no-replies messages yellow for visual distinction

This commit is contained in:
jim
2026-05-05 18:07:19 -05:00
parent 78e3a070b2
commit 9c77ecce4b
+3 -1
View File
@@ -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;