-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Audio playback gets cut off followed by infinite loading spinner. #6054
Comments
Any other logs or errors in the console you can provide? Does this happen with any other media or when playing other songs? Any extra info you can provide is helpful as I can't reproduce it on my end. |
@viown This should give you a good amount of info on all HTTP traffic of the web client from my new attempt of listening to music until jellyfin breaks. I have checked the jellyfin server logs and found no errors or warnings or any out of the ordinary logs. Use a HAR viewer like: http://www.softwareishard.com/har/viewer/ to read the file Additionally here is a copy of the browser console output after the bug triggered: |
Your error seems to be coming from here: Which triggers the error when it can't find 'http' in your address. If I try to add a server address to jellyfin-web without specifying http, it'll correctly recognize that it's missing and add it automatically. I'm not sure why it's missing for you, but you most likely have a configuration error somewhere. Interestingly, if I manually change the address to not include http, I do see a similar malformed URL to yours: So I'd say double-check your networking config. Check your 'Networking' tab in the dashboard. If you're using docker with |
In my case the published server url does not include the protocol. il modify it and see if it still happens |
Oh I forgot this issue was still open. @viown adding the protocol indeed resolved the bug I was facing. Thanks for your help! Hopefully the LSIO jellyfin readme will be updated to include this in their example as well. |
Describe The Bug
When playing back media specifically audio/music. The jellyfin web client suddenly starts showing its loading spinner and the music stops. No way to play any other type of media. Audio or video for that matter without doing a full refresh and creating a new session.
Media Information
Screenshots
System:
Additional Context
Noticed a 404 HTTP error in the firefox web developer console.
Method + URL:
GET https://${MY_DOMAIN}/web/${MY_DOMAIN}/system/info/public
This url seems malformed and should probably be
https://${MY_DOMAIN}/web/system/info/public
For what its worth this issue also happens with the jellyfin desktop app on both windows clients and linux clients.
The text was updated successfully, but these errors were encountered: