Skip to content

Commit

Permalink
Upgraded sf cli to v2.13.9
Browse files Browse the repository at this point in the history
Hopefully this will resolve some pipeline issues... maybe
  • Loading branch information
jongpie committed Oct 24, 2023
1 parent 7a983ff commit 639359d
Show file tree
Hide file tree
Showing 4 changed files with 12,660 additions and 12,203 deletions.
1 change: 0 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -300,7 +300,6 @@ jobs:
- name: 'Temporarily delete problematic metadata'
run: |
rm -rf ./config/experience-cloud/
rm -rf ./nebula-logger/unsorted/main/default/profiles/
- name: 'Create Beta Managed Package Version'
run: npm run package:version:create:managed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -953,10 +953,12 @@ global with sharing class LogEntryEventBuilder {
return null;
}

// Record field-stripping isn't done by reference, so the map's values have to be reassigned
Map<String, SObject> strippedRecordIdToRecord = new Map<String, SObject>(); //changed key type from Id to String
// In Apex, a Map<Id, SObject> with a null ID value will break during serialization,
// so convert it to a Map<String, SObject> first
Map<String, SObject> strippedRecordIdToRecord = new Map<String, SObject>();
for (Id recordId : recordIdToRecord.keySet()) {
SObject record = recordIdToRecord.get(recordId);
// Record field-stripping isn't done by reference, so the record has to be reassigned
record = isRecordFieldStrippingEnabled == false ? record : stripInaccessible(record);
String recordIdString = recordId == null ? '' : recordId;
strippedRecordIdToRecord.put(recordIdString, record);
Expand Down
Loading

0 comments on commit 639359d

Please sign in to comment.