From 951242294b4ac27ee9ae8c4c165bc4f39ae72d81 Mon Sep 17 00:00:00 2001 From: Milkshake Date: Sun, 1 Dec 2024 14:47:33 -0500 Subject: [PATCH] Accept review suggestion Co-authored-by: Erisa A --- Program.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Program.cs b/Program.cs index 8353981e..8f242413 100644 --- a/Program.cs +++ b/Program.cs @@ -240,10 +240,10 @@ static async Task Main(string[] _) int numJoinWatches = joinWatchedUsersList.Length; foreach (var user in joinWatchedUsersList) { - // Get text for note; use joinwatch context if available, or "N/A; created from joinwatch without context" otherwise + // Get text for note; use joinwatch context if available, or "N/A; imported from joinwatch without context" otherwise string noteText; if (joinWatchNotesList.FirstOrDefault(x => x.Name == user) == default) - noteText = "N/A; created from joinwatch without context"; + noteText = "N/A; imported from joinwatch without context"; else noteText = joinWatchNotesList.First(x => x.Name == user).Value;