Runtime errors when naviagting to homepage - Printable Version +- Jellyfin Forum (https://forum.jellyfin.org) +-- Forum: Development (https://forum.jellyfin.org/f-development) +--- Forum: Web Development (https://forum.jellyfin.org/f-web-development) +--- Thread: Runtime errors when naviagting to homepage (/t-runtime-errors-when-naviagting-to-homepage) |
Runtime errors when naviagting to homepage - Dzvon2 - 2024-04-06 I was looking at potentially contributing to Jellyfin in the near future but I ran into issues getting a local serve spun up. Whenever I navigate to the homepage of my server I get uncaught runtime errors and from the console I get the stack trace below (note I removed any potential PII, but marked places where I removed such things). None of my libraries appear either which makes it pretty hard to see the changes I make. I know testing for 10.9 is well underway, so is this a bug or some additional feature coming in 10.9 I am not aware of? Code: { RE: Runtime errors when naviagting to homepage - TheDreadPirate - 2024-04-06 What OS and which install method? RE: Runtime errors when naviagting to homepage - niels - 2024-04-06 Make sure to use a 10.9 server. The master branch of the web client is not compatible with 10.8 servers We've added new routes in our API to remove the need for a user id in the path, these routes are not available in 10.8 causing the 404 response. RE: Runtime errors when naviagting to homepage - Dzvon2 - 2024-04-06 (2024-04-06, 07:27 PM)niels Wrote: Make sure to use a 10.9 server. The master branch of the web client is not compatible with 10.8 servers Oh this is the issue. I had the 10.9 interface but my server is on 10.8.13. Thanks for the help |