Skip to content

Commit

Permalink
fix: Reading finish of null in SPA (#1085)
Browse files Browse the repository at this point in the history
  • Loading branch information
cwli24 authored Jun 26, 2024
1 parent c7efd9a commit df874f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/features/spa/aggregate/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ export class Aggregate extends AggregateBase {
var interaction = this.ixn
var node = activeNodeFor(interaction)
setCurrentNode(null)
node.child('customEnd', timestamp).finish(timestamp)
node.child('customEnd', timestamp)?.finish(timestamp)
interaction.finish()
}, this.featureName, baseEE)

Expand Down

0 comments on commit df874f7

Please sign in to comment.