Added null check for plugin settings.
This commit is contained in:
parent
23ab4f593d
commit
6ec420bdb9
1 changed files with 12 additions and 9 deletions
|
|
@ -101,6 +101,8 @@ namespace Observatory.PluginManagement
|
|||
{
|
||||
var settingNames = new Dictionary<PropertyInfo, string>();
|
||||
|
||||
if (settings != null)
|
||||
{
|
||||
var properties = settings.GetType().GetProperties();
|
||||
foreach (var property in properties)
|
||||
{
|
||||
|
|
@ -114,6 +116,7 @@ namespace Observatory.PluginManagement
|
|||
settingNames.Add(property, attrib.DisplayName);
|
||||
}
|
||||
}
|
||||
}
|
||||
return settingNames;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue