fix(util_log): refs #7268 fix getChanges when is datestring #2370

Merged
alexm merged 3 commits from 7268-hotFix_getChanges_datestring into master 2024-05-30 08:13:35 +00:00
1 changed files with 4 additions and 0 deletions

View File

@ -85,8 +85,12 @@ exports.translateValues = async(instance, changes, options = {}) => {
exports.getChanges = (original, changes) => {
const oldChanges = {};
const newChanges = {};
const dateRegex = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}\.\d{3}Z$/;
for (let property in changes) {
if (dateRegex.test(original[property]))
original[property] = new Date(Date.parse(original[property]));
const firstChar = property.substring(0, 1);
const isPrivate = firstChar == '$';
if (isPrivate) return;