diff --git a/libresonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp b/libresonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp index 7e6cb2b9..447ac3dc 100644 --- a/libresonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp +++ b/libresonic-main/src/main/webapp/WEB-INF/jsp/playQueue.jsp @@ -241,7 +241,8 @@ var volume = parseInt($("#castVolume").slider("option", "value")) + gain; $("#castVolume").slider("option", "value", volume); } else if (jwplayer()) { - jwplayer().setVolume(jwplayer().getVolume() + gain); + var volume = parseInt(jwplayer().getVolume()); + jwplayer().setVolume(volume + gain); } else { var value = parseInt($("#jukeboxVolume").slider("option", "value")); $("#jukeboxVolume").slider("option", "value", volume);