From 01415fd6dc85f64d707bf4dcec574ffc59be9799 Mon Sep 17 00:00:00 2001 From: Anairkoen Schno Date: Fri, 3 May 2019 13:48:54 -0500 Subject: [PATCH] Added null check to DownloadProgressCell (because apparently Init wasn't being called?) --- BSIPA-ModList/UI/DownloadProgressCell.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/BSIPA-ModList/UI/DownloadProgressCell.cs b/BSIPA-ModList/UI/DownloadProgressCell.cs index 08a37cd7..dcbf607f 100644 --- a/BSIPA-ModList/UI/DownloadProgressCell.cs +++ b/BSIPA-ModList/UI/DownloadProgressCell.cs @@ -58,6 +58,7 @@ namespace BSIPA_ModList.UI public void Update() { + if (mod == null) return; _bgImage.enabled = true; switch (mod.State) {