jellyfin / jellyfin-plugin-vgmdb

VGMdb provider for Jellyfin
GNU General Public License v3.0
17 stars 8 forks source link

Fix double slash in API URL's causing the plugin to never work #20

Closed nielsvanvelzen closed 10 months ago

nielsvanvelzen commented 10 months ago

Basically a search request would use the following URL:

https://vgmdb.info//search?format=json&q=

Because the RootUrl ends with a slash and when adding the path we start with a slash. This would cause the API to respond with a 404 response containing HTML content.

Fixes #16