Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/371f8629b1be0f54e8703470b34a29ab2fb36d8c You should set ROOT_URL correctly, otherwise the web may not work correctly.

Update Jellyfin.Server/Middleware/UrlDecodeQueryFeature.cs

Co-authored-by: Claus Vium <cvium@users.noreply.github.com>
pull/5990/head
BaronGreenback 4 years ago committed by GitHub
parent 133ce65e28
commit 371f8629b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -76,7 +76,7 @@ namespace Jellyfin.Server.Middleware
continue;
}
pairs.Add(pair[0..i].ToString(), new StringValues(pair[(i + 1)..].ToString()));
pairs.Add(pair[..i].ToString(), new StringValues(pair[(i + 1)..].ToString()));
}
_store = new QueryCollection(pairs);

Loading…
Cancel
Save