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

Add error logging when translation is missing from core

pull/852/head
Claus Vium 6 years ago committed by Bond-009
parent 49923e50db
commit ce03662fa7

@ -470,6 +470,10 @@ namespace Emby.Server.Implementations.Localization
dictionary[key] = dict[key];
}
}
else
{
_logger.LogError("Missing translation/culture resource: {ResourcePath}", resourcePath);
}
}
}

Loading…
Cancel
Save