Skip to content

Commit

Permalink
Update Dependencies.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
itssimple authored May 18, 2022
1 parent 791b8ad commit 53dd0a1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion CurseForge.Minecraft.Serverpack.Launcher/Dependencies.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ private static async Task DownloadMinecraftLibraries(ApiClient cfApiClient, stri
var modDlUrl = mod.Data.DownloadUrl;
if(string.IsNullOrWhiteSpace(modDlUrl))
{
modDlUrl = await cfApiClient.GetModFileDownloadUrlAsync((int)file.ProjectId, (int)file.FileId).Data;
modDlUrl = (await cfApiClient.GetModFileDownloadUrlAsync((int)file.ProjectId, (int)file.FileId)).Data;
}

if(string.IsNullOrWhiteSpace(modDlUrl))
Expand Down

0 comments on commit 53dd0a1

Please sign in to comment.