Skip to content

Commit

Permalink
fix: invalid regex error
Browse files Browse the repository at this point in the history
  • Loading branch information
Codeneos committed May 27, 2024
1 parent 3f84b18 commit 176704a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/util/src/salesforce.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ export function decodeSalesforceId(id : string) {
return {
objectPrefix: match[1],
instanceId: match[2],
recordId: match[4],
caseChecksum: match[5]
recordId: match[3],
caseChecksum: match[4]
};
}

Expand Down

0 comments on commit 176704a

Please sign in to comment.