Skip to content

Commit

Permalink
Merge pull request #948 from clemenstyp/patch-1
Browse files Browse the repository at this point in the history
fixed setting genre for whole album
  • Loading branch information
randomnicode committed Feb 17, 2023
2 parents 89e6fe9 + 9af28e1 commit 8e1ec2f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions airsonic-main/src/main/webapp/WEB-INF/jsp/editTags.jsp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
}
}
function setGenre() {
var genre = $("input[name='genreAll']").val();
var genre = $("select[name='genreAll']").val();
for (var i = 0; i < fileCount; i++) {
$("input[name='genre" + i + "']").val(genre);
}
Expand Down Expand Up @@ -182,4 +182,4 @@

<p><input type="submit" id="save" value="<fmt:message key='common.save'/>" onclick="updateTags()"/></p>
<div class="warning" id="errors"/>
</body></html>
</body></html>

0 comments on commit 8e1ec2f

Please sign in to comment.