From b163fc0aa73aab0ccec267c2b3ace7e39d04ec0b Mon Sep 17 00:00:00 2001 From: Fanat1c <51752739+fanat1cc@users.noreply.github.com> Date: Tue, 1 Aug 2023 08:08:15 +1000 Subject: [PATCH] Update Program.cs This should fix the injector sometimes saying it doesn't have an internet connection because of firewall settings with the old read --- CouInjector/Program.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CouInjector/Program.cs b/CouInjector/Program.cs index 10c8eb7..3749016 100644 --- a/CouInjector/Program.cs +++ b/CouInjector/Program.cs @@ -15,7 +15,7 @@ static void Main() try { using (var client = new WebClient()) - using (client.OpenRead("http://google.com/generate_204")) + using (client.OpenRead("https://clients3.google.com")) Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1());