Jump to content

All Activity

This stream auto-updates

  1. Past hour
  2. FYI - I am happy to kill all api keys and reset those apps, plus I am happy to kill all manually added plugins for a fresh system, I was just looking at an order of which is more likely to be the culprit.
  3. As to what happens when it stops working, the first time, I got calls from a few friends, but as I was away, I just did a remote restart. The second time I was watching it myself and just got the spinning disk, and then calls from others, and EVEN the Emby console was not responding - refresh in the browser and timeouts. I again restarted the docker container and all good again. I just checked the jellyseer logs and it is going to do a full Emby sync in 15 hours - I will be in bed then. I don't think it's that as it runs every 24 hours and this issue was at 7:10PM. To rule it out however, I just kicked off a manual full Emby sync. Checked Emby logs and processes - no impact and little log activity. With regards to external access - I have check log files for the same timeframe for jellystat, seerr, Nothing else does any sort of sync. My API keys are thus - Any idea what order, or what below may be the culprit for removal from the plugins -
  4. Media_Spice

    Emby on VegaOS

    I definitely have a VegaOS device. I'm running Emby on all my FireTV devices. It's just this new one that was having a problem. No worries, though, I'm able to see my server now using Astra.
  5. Emby Releases

    Changelog: Emby for Android

    3.5.58 Fix When "autoplay next episode" is off, the app still prevents screen from going off Core UI Changes from 26.0.23 to 26.0.25 Various spotlight fixes for older devices General slideshow fixes Support mousewheel for horizontal sections in TV display mode Improve spotlight design Fix text not visible in screensavers
  6. Emby Releases

    New Emby for Android 3.5.58 Released

    Emby for Android 3.5.58 Released Changes 3.5.58 Fix When "autoplay next episode" is off, the app still prevents screen from going off Core UI Changes from 26.0.23 to 26.0.25 Various spotlight fixes for older devices General slideshow fixes Support mousewheel for horizontal sections in TV display mode Improve spotlight design Fix text not visible in screensavers
  7. Hi, can you please try 3.5.58+ and let us know how that compares? Thanks !
  8. Hi, can you please try 3.5.58+ and let us know how that compares? Thanks !
  9. Hi, can you please try 3.5.58+ and let us know how that compares? Thanks !
  10. Hi there, please attach the complete emby server log file. thanks.
  11. Thanks for following up.
  12. Please ignore this. Problem solved: DNS error! Cheers, John
  13. Per the attached log file, I tried searching the guide for shows containing the word "Task" which fails to generate any results. A couple minutes later the port mapper generates an error, after which my search for "Task" suddenly works and generates some results. embyserver_2026-09-15.txt
  14. Emby Releases

    Changelog: Emby Web App

    26.0.25 Various spotlight fixes for older devices General slideshow fixes Support mousewheel for horizontal sections in TV display mode
  15. Emby Releases

    Emby Web App Updated: Version 26.0.25

    Emby Web App Update: Version 26.0.25 The Emby Web app has been updated to version 26.0.25 Go and try out: https://app.emby.media/ Changes 26.0.25 Various spotlight fixes for older devices General slideshow fixes Support mousewheel for horizontal sections in TV display mode
  16. Luke

    Why is Emby scan overriding settings?

    @nospotifyhas this helped?
  17. Luke

    Continue listening for music

    Hi, this is on our to do list. Thanks.
  18. bandit8623

    Search Very Slow (3 minute response)

    Yikes released this to main branch? Man
  19. ebr

    Emby on VegaOS

    That's not a Vega device... But we are definitely in the normal Fire OS app store - twice, in fact. What part of the world?
  20. Thought it might be useful (or not) to be able to add some form of note to the above, so if there's an address or three I can say somehow which address belongs to which user. Maybe a separate row of ID's per address, or a way to have in the filter stuff in quotes, as in "Colin='131.294.265.265, or something.
  21. Luke

    Emby not working on Philips 85PUS8500 LED TV

    OK, are you trying to connect to your own Emby Server, or someone else's server?
  22. If you can get it to happen again with debug logging enabled then that may tell us more.
  23. pwhodges

    Roku - can we still change the default tab?

    Sorry - I misread that. Your solution is good. Paul
  24. The log I imagine shows my plugins. Could it be conversant or something that is incomparable with the later release?
  25. I have not changed anything for a long while. Except emby upgrade. By all means I can shutdown jellyseer, which if the only external thing. But it has its own request thing, it does not request emby do this.
  26. Today
  27. Also maybe this is helpful: Because your reverse proxy is NGINX, the interaction between recent .NET 8 servicing updates and NGINX's strict handling of HTTP headers is exactly where this WebSocket rejection usually triggers. When Microsoft rolls out security patches in .NET 8 maintenance releases (specifically targeting HTTP Request Smuggling vulnerabilities), Kestrel becomes exceptionally strict about evaluating request headers. If NGINX modifies or strips specific upgrade headers during the handshake proxying, Kestrel will instantly reject the socket. To restore functionality, your NGINX location configuration must explicitly preserve the WebSocket handshake headers: The Required NGINX Configuration Fix In your NGINX site configuration file (e.g., /etc/nginx/sites-available/default), update your location block for the ASP.NET Core application to explicitly map the Upgrade and Connection parameters: nginx location / { proxy_pass http://127.0.0.1:5000; # Address to your Kestrel instance # Force HTTP/1.1 for the WebSocket handshake proxy_http_version 1.1; # Explicitly map the upgrade headers required by Kestrel proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "upgrade"; # Forward original client routing details to ForwardedHeaders proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; # Optional: Prevent NGINX from prematurely killing long-lived connections proxy_read_timeout 86400; } Use code with caution. Why This Fails After Recent Updates Stricter Connection Headers: By default, NGINX strips the Upgrade header entirely when proxying requests unless instructed otherwise. Prior to the .NET 8 patches, Kestrel was sometimes lenient if it could still parse the raw payload, but recent maintenance releases immediately abort the request if the explicit Connection: upgrade handshake is absent. [1, 2, 3] The map Directive Variant: If your application serves both normal HTTP traffic and WebSockets over the exact same URL path, hardcoding proxy_set_header Connection "upgrade" can cause standard HTTP requests to behave unexpectedly. If you run into this, declare a dynamic header map at the top of your nginx.conf (in the http block): nginx http { map $http_upgrade $connection_upgrade { default upgrade; '' close; } } Use code with caution. Then inside your app's location block, use: nginx proxy_set_header Connection $connection_upgrade; Use code with caution. [1, 2] After applying the proxy_set_header additions and running sudo nginx -s reload, check if the error persists. If it does, are you seeing a 400 Bad Request or a 404/502 error
  1. Load more activity
×
×
  • Create New...