Skip to content

Commit

Permalink
fix: pick correct first_round action in That's My Song
Browse files Browse the repository at this point in the history
  • Loading branch information
BeritJanssen authored and drikusroor committed May 27, 2024
1 parent dba227f commit 1b249f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/experiment/rules/thats_my_song.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def get_info_playlist(self, filename):
def first_round(self, experiment):
actions = super().first_round(experiment)
# skip Consent and Playlist action
return [actions[0]]
return [actions[2]]

def next_round(self, session):
"""Get action data for the next round"""
Expand Down

0 comments on commit 1b249f3

Please sign in to comment.