Have something to say?

Tell us how we could make the product more useful to you.

Music & Sounds (Rize Library) loads indefinitely on desktop app β€” Windows

Version: 2.3.7 (Windows 11) Steps to reproduce: Open Rize desktop app Go to Music & Sounds β†’ Rize Library Select any track (e.g. Space Ambience, Synthwave, Classical) Track shows loading spinner indefinitely, never plays Expected: Audio plays, as it does on app.rize.io in browser. Investigation findings: Network tab: All requests return 200. YouTube IFrame Player API loads successfully (player?prettyPrint=false, next?prettyPrint=false, qoe?cpn=... all succeed). Thumbnails and GraphQL calls work fine. No failed or pending requests. Console: No errors after clearing and attempting playback. Main process logs (main.log): Repeated media permission checks being triggered: [Security] Permission check [Security] - Permission: media Root cause: In the main process, setPermissionRequestHandler calls the callback with false for all permissions, and setPermissionCheckHandler returns false for all checks β€” including media. The YouTube embedded player loads but cannot output audio because the media permission is denied. No error is thrown; it just buffers forever. onPermissionRequest(e, t, n) { n(!1) } // denies all permissions onPermissionCheck(e, t) { return !1 } // denies all checks Suggested fix: Allow the media permission: onPermissionRequest(e, t, n) { n(t === 'media') } onPermissionCheck(e, t) { return t === 'media' } Workaround: Use app.rize.io in a browser β€” music plays fine there since the browser grants media permissions automatically.

Dale Landoy 2 days ago

πŸ›

Bug Reports