I was getting a problem and fixed it in the HomeGenieService.cs file, line 816 as follows
if (parameter == null) {
module.Properties.Add(new ModuleParameter() {
Name = propertyChangedAction.Path,
Value = propertyChangedAction.Value.ToString()
});
parameter = Utility.ModuleParameterGet(module, propertyChangedAction.Path);
}
if the parameter was null (i.e. not found), it was added but the value of the variable parameter requires updating, please add the line:
parameter = Utility.Mod..............
I was getting a problem and fixed it in the HomeGenieService.cs file, line 816 as follows
if (parameter == null) {
if the parameter was null (i.e. not found), it was added but the value of the variable parameter requires updating, please add the line: parameter = Utility.Mod..............