Skip to content

Commit 44c5408

Browse files
authored
a
1 parent 349c4c7 commit 44c5408

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Injector/Inject.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -187,12 +187,12 @@ public static bool InjectDLL()
187187

188188
public static string GetLatestSupportedVersion()
189189
{
190-
// https://raw.githubusercontent.com/Prax-Client/Releases/main/latest_supported.txt
190+
// https://raw.githubusercontent.com/Prax-Client/Releases/main/latest.txt
191191
try
192192
{
193193
HttpClient client = new HttpClient();
194194
client.DefaultRequestHeaders.Add("User-Agent", "Prax Injector");
195-
var response = client.GetAsync("https://raw.githubusercontent.com/Prax-Client/Releases/main/latest_supported.txt").Result;
195+
var response = client.GetAsync("https://raw.githubusercontent.com/Prax-Client/Releases/main/latest.txt").Result;
196196
if (!response.IsSuccessStatusCode)
197197
{
198198
Logger.Log("GetLatestSupportedVersion", "Failed to get latest supported version", Logger.LType.Error);
@@ -246,4 +246,4 @@ public static string GetMinecraftVersion()
246246
return string.Empty;
247247
}
248248
}
249-
}
249+
}

0 commit comments

Comments
 (0)