Skip to content

remove artist from answer and only song #42

Merged
merged 1 commit into from
Apr 10, 2026
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,12 @@ private void buildAndStartSession(String sessionId, List<Player> sessionPlayers,
Song correct = songs.get(q);

List<String> options = new ArrayList<>();
options.add(correct.getTitle() + " - " + correct.getArtist());
options.add(correct.getTitle());

int decoysAdded = 0;
for (Song decoy : decoyPool) {
if (decoysAdded >= OPTIONS_PER_Q - 1) break;
String label = decoy.getTitle() + " - " + decoy.getArtist();
String label = decoy.getTitle();
if (!options.contains(label)) {
options.add(label);
decoysAdded++;
Expand Down
Loading