We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c7bf0a commit acd114dCopy full SHA for acd114d
Models/Minecraft/Purpur/PurpurManifest.cs
@@ -60,7 +60,7 @@ public GameUpdate GetGameUpdate()
60
61
private static string GetDownloadUrl(string version)
62
{
63
- return $"https://serverjars.com/api/fetchJar/purpur/{version}";
+ return $"https://serverjars.com/api/fetchJar/servers/purpur/{version}";
64
}
65
66
public class PurpurVersionManifest
@@ -72,7 +72,7 @@ public static PurpurVersionManifest GetManifests()
72
using (var wc = new WebClient())
73
74
return JsonConvert.DeserializeObject<PurpurVersionManifest>(
75
- wc.DownloadString("https://serverjars.com/api/fetchAll/purpur"));
+ wc.DownloadString("https://serverjars.com/api/fetchAll/servers/purpur"));
76
77
78
0 commit comments