You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -37,12 +40,12 @@ public static string LoadInput(int day, int year)
37
40
Console.ForegroundColor=ConsoleColor.DarkRed;
38
41
if(statusCode==HttpStatusCode.BadRequest)
39
42
{
40
-
Console.WriteLine($"Day {day}: Error code 400 when attempting to retrieve puzzle input through the web client. Your session cookie is probably not recognized.");
43
+
Console.WriteLine($"Day {day}: Received 400 when attempting to retrieve puzzle input. Your session cookie is probably not recognized.");
41
44
42
45
}
43
46
elseif(statusCode==HttpStatusCode.NotFound)
44
47
{
45
-
Console.WriteLine($"Day {day}: Error code 404 when attempting to retrieve puzzle input through the web client. The puzzle is probably not available yet.");
48
+
Console.WriteLine($"Day {day}: Received 404 when attempting to retrieve puzzle input. The puzzle is probably not available yet.");
0 commit comments