Open stratacorps opened 5 months ago
The problem is in utils.js, specifically https://github.com/recallfx/node-red-contrib-eufy-security/blob/cc38cf23a3891925fefaa19f2a4a6d838f721630/eufy-security/utils.js#L21
So when the transformProperties function is called it replaces all values with undefined. Changing utils.js line 21 to this is a simple fix: result[key] = value;
result[key] = value;
The problem is in utils.js, specifically https://github.com/recallfx/node-red-contrib-eufy-security/blob/cc38cf23a3891925fefaa19f2a4a6d838f721630/eufy-security/utils.js#L21
So when the transformProperties function is called it replaces all values with undefined. Changing utils.js line 21 to this is a simple fix:
result[key] = value;