Skip to content

Commit

Permalink
Fix casing for #98 that didn't get amended to PR commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jamessimone committed May 11, 2021
1 parent 7988c78 commit 159519e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/convert-dlrs-rules.apex
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Metadata.DeployContainer deployment = new Metadata.DeployContainer();
List<String> invalidChildren = new List<String>{ 'Event', 'Task', 'User' };

for (dlrs__LookupRollupSummary2__mdt dlrsRule : dlrs__LookupRollupSummary2__mdt.getAll().values()) {
if (dlrsRule.dlrs__Active__c == false || invalidchildren.contains(dlrsRule.dlrs__ChildObject__c)) {
if (dlrsRule.dlrs__Active__c == false || invalidChildren.contains(dlrsRule.dlrs__ChildObject__c)) {
continue;
}

Expand Down

0 comments on commit 159519e

Please sign in to comment.