Skip to content

Commit

Permalink
Fix tag mapping for radio #52
Browse files Browse the repository at this point in the history
  • Loading branch information
sfuhrm committed Jan 7, 2024
1 parent 2f809cf commit 9e6804e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/de/sfuhrm/radiorecorder/Radio.java
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ static Radio fromStation(Station s) {
if (s.getBitrate() != null) {
r.setBitrate(s.getBitrate());
}
r.setTags(new ArrayList<>(r.getTags()));
r.setTags(new ArrayList<>(s.getTagList()));
return r;
}
}

0 comments on commit 9e6804e

Please sign in to comment.