aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael <[email protected]>2017-04-23 15:36:02 -0400
committerMichael <[email protected]>2017-04-23 15:36:02 -0400
commitbc66ccccd77627d78f57bc8cfdaa851c9bbd1623 (patch)
tree4b05301a417fbb84ebf30d9da0a3a500a7afda4f
parente833a9bf2751f16d8614af9aa20f5b9bec3d81a8 (diff)
downloadshiftos_thereturn-bc66ccccd77627d78f57bc8cfdaa851c9bbd1623.tar.gz
shiftos_thereturn-bc66ccccd77627d78f57bc8cfdaa851c9bbd1623.tar.bz2
shiftos_thereturn-bc66ccccd77627d78f57bc8cfdaa851c9bbd1623.zip
more appscape ui work
-rw-r--r--ShiftOS.WinForms/ShiftnetSites/AppscapeMain.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ShiftOS.WinForms/ShiftnetSites/AppscapeMain.cs b/ShiftOS.WinForms/ShiftnetSites/AppscapeMain.cs
index 88db07b..53bd6d1 100644
--- a/ShiftOS.WinForms/ShiftnetSites/AppscapeMain.cs
+++ b/ShiftOS.WinForms/ShiftnetSites/AppscapeMain.cs
@@ -37,7 +37,7 @@ namespace ShiftOS.WinForms.ShiftnetSites
public string[] GetCategories()
{
- var upgrades = Shiftorium.GetDefaults().Where(x => x.Dependencies.Contains("appscape_"));
+ var upgrades = Shiftorium.GetDefaults().Where(x => (x.Dependencies == null) ? false : x.Dependencies.Contains("appscape_"));
List<string> cats = new List<string>();
cats.Add("All");
try