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

Update MediaBrowser.Providers/TV/TheTVDB/TvdbEpisodeProvider.cs

Co-Authored-By: Bond-009 <bond.009@outlook.com>
pull/1629/head
Claus Vium 6 years ago committed by GitHub
parent 11504321b5
commit 26b4fb21fe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -206,7 +206,7 @@ namespace MediaBrowser.Providers.TV.TheTVDB
var roleStartIndex = currentActor.IndexOf('(');
string name = currentActor;
string role = "";
string role = string.Empty;
if (roleStartIndex != -1)
{
var roles = new List<string> {currentActor.Substring(roleStartIndex + 1)};

Loading…
Cancel
Save