Closed byter11 closed 2 years ago
Allows the frontend to go above 100 volume when custom max volume is used. Can be implemented on the official android app by editing views/Player.vue
views/Player.vue
if (playerData.value.volume < playerData.value["volume-max"]) { const newVolume = Math.min(playerData.value["volume-max"], playerData.value.volume + 5); apiInstance.post(`controls/volume/${newVolume}`) ... ... }```
Thanks for your work, I've checked your PR and works fine. You can implement it into app if you want.
Allows the frontend to go above 100 volume when custom max volume is used. Can be implemented on the official android app by editing
views/Player.vue