Check mod status when checking hash

This commit is contained in:
Megalon 2020-04-21 15:42:03 -07:00
parent 925de391e2
commit abace2afc0
2 changed files with 2 additions and 1 deletions

View file

@ -10,6 +10,7 @@ namespace ModAssistant
public string version;
public string gameVersion;
public string _id;
public string status;
public string authorId;
public string uploadedDate;
public string updatedDate;

View file

@ -222,7 +222,7 @@ namespace ModAssistant.Pages
{
foreach (Mod mod in AllModsList)
{
if (mod.name.ToLower() != "bsipa")
if (mod.name.ToLower() != "bsipa" && mod.status != "declined")
{
foreach (Mod.DownloadLink download in mod.downloads)
{