Skip to content

Commit

Permalink
Merge pull request #202 from lookit/bugfix/mark-consent-footage
Browse files Browse the repository at this point in the history
prefix payloads for consent videos with 'consent-' to enable detectio…
  • Loading branch information
Kim Scott committed Dec 18, 2020
2 parents 0256a16 + 9427f14 commit 687c2fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/mixins/video-record.js
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ export default Ember.Mixin.create({

_generateVideoId() {
return [
'videoStream',
this.get('frameType') === 'CONSENT' ? 'consent-videoStream' : 'videoStream',
this.get('experiment.id'),
this.get('id'), // parser enforces that id is composed of a-z, A-Z, -, ., [space]
this.get('session.id'),
Expand Down

0 comments on commit 687c2fc

Please sign in to comment.