consistent naming
This commit is contained in:
parent
56495c9d13
commit
2b5dcff836
1 changed files with 2 additions and 2 deletions
|
@ -37,9 +37,9 @@ export class RelationWriter {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
_applyRelation(sourceEntry, target, log) {
|
_applyRelation(sourceEntry, targetEntry, log) {
|
||||||
if (sourceEntry.eventType === REDACTION_TYPE) {
|
if (sourceEntry.eventType === REDACTION_TYPE) {
|
||||||
return log.wrap("redact", log => this._applyRedaction(sourceEntry.event, target.event, log));
|
return log.wrap("redact", log => this._applyRedaction(sourceEntry.event, targetEntry.event, log));
|
||||||
} else {
|
} else {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue