a simple web player for subsonic tinysub.devins.page
subsonic navidrome javascript
9
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: do not swallow cmd/ctrl+shift+r

this is usually hard-refresh on browsers. this keybind is quite handy to
bypass cached data, so it would be nice to not swallow it, to bypass
tinysub's image/album cache.

Signed-off-by: oppiliappan <me@oppi.li>

authored by

oppiliappan and committed by
Tangled
9996653c 6a49dc3e

+1
+1
src/js/input.js
··· 421 421 422 422 case "KeyR": { 423 423 if (!e.shiftKey) return; // Shift+R for toggle loop 424 + if (e.ctrlKey || e.metaKey) return; // allow Ctrl/Cmd+Shift+R for hard refresh 424 425 e.preventDefault(); 425 426 state.loop = !state.loop; 426 427 ui.loopBtn.classList.toggle(CLASSES.ACTIVE, state.loop);