Skip to content

Commit

Permalink
Bugfix: single frame interaction wasn't passing the trace around, wou…
Browse files Browse the repository at this point in the history
…ld not get properly completed
  • Loading branch information
pyricau committed Aug 27, 2024
1 parent ede2e74 commit c9cb1ef
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion papa/src/main/java/papa/InteractionRuleClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,10 @@ interface OnEventScope<ParentEventType : Any, EventType : ParentEventType> {
event.toString()
),
): FinishingInteraction<ParentEventType> {
return startInteraction(trigger = trigger).finish()
return startInteraction(
trigger = trigger,
trace = trace
).finish()
}

/**
Expand Down

0 comments on commit c9cb1ef

Please sign in to comment.