Skip to content

Commit

Permalink
Accept review suggestion
Browse files Browse the repository at this point in the history
Co-authored-by: Erisa A <[email protected]>
  • Loading branch information
FloatingMilkshake and Erisa authored Dec 1, 2024
1 parent 8534b82 commit 9512422
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand Down

0 comments on commit 9512422

Please sign in to comment.