We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a1d9e37 commit 1871fc4Copy full SHA for 1871fc4
src/modules/models/job_models/migrationJobTask.ts
@@ -1751,7 +1751,7 @@ export default class MigrationJobTask {
1751
return Object.keys(cloned)
1752
.filter(key => fieldsToCompareRecords.length == 0 || fieldsToCompareRecords.indexOf(key) >= 0)
1753
.some(key => {
1754
- if (key != "Id" && key != CONSTANTS.__ID_FIELD_NAME) {
+ if (key != "Id" && key != CONSTANTS.__ID_FIELD_NAME && key != CONSTANTS.__SOURCE_ID_FIELD_NAME) {
1755
// FIXME: && target.hasOwnProperty(key) solves issue
1756
// Auto-number fields ignored when used as sourceField in fieldMapping #89
1757
// But it causes error when copying self-referencing fields with field mapping with complex extgernal id
0 commit comments