We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b0fe6 commit 4bcdb45Copy full SHA for 4bcdb45
Backend/AppService.cs
@@ -8407,7 +8407,7 @@ private static uint MurmurHash2(byte[] data, uint seed)
8407
// Get mod details for more info
8408
var modUrl = $"https://api.curseforge.com/v1/mods/{modId}";
8409
using var modRequest = new HttpRequestMessage(HttpMethod.Get, modUrl);
8410
- modRequest.Headers.Add("x-api-key", "$2a$10$1W4EvLWzLe4.RM1kcxW9n.vxmBPEYcg9dvpT4r5OAlkQk/.6jQE4e");
+ modRequest.Headers.Add("x-api-key", "curseforgeapikey");
8411
8412
using var modResponse = await HttpClient.SendAsync(modRequest);
8413
if (!modResponse.IsSuccessStatusCode)
0 commit comments