From 1b249f3665bd602ebaa527cf981e2335af4bc05b Mon Sep 17 00:00:00 2001 From: BeritJanssen Date: Mon, 27 May 2024 12:15:57 +0200 Subject: [PATCH] fix: pick correct first_round action in That's My Song --- backend/experiment/rules/thats_my_song.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/experiment/rules/thats_my_song.py b/backend/experiment/rules/thats_my_song.py index 82ad44fb6..3adee411e 100644 --- a/backend/experiment/rules/thats_my_song.py +++ b/backend/experiment/rules/thats_my_song.py @@ -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"""