fixed bug

This commit is contained in:
git 2025-06-19 14:17:51 +01:00
parent b8f24d0104
commit 9a73a64a43

View File

@ -27,7 +27,7 @@ function handleTriggerExecutionResult($result, $stdout, $stderr, $originalRow, $
} }
// Check if the new data differs from the original data // Check if the new data differs from the original data
if ($newRowValue !== $originalRow) { if (json_encode($newRowValue) !== json_encode($originalRow)) {
// Update the database row accordingly // Update the database row accordingly
updateDatabaseRow($tableName, $originalRow, $newRowValue); updateDatabaseRow($tableName, $originalRow, $newRowValue);
} }