Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/5be87753d694f17d400a80070ccd83926b1e5fb3
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
3 additions and
3 deletions
@ -740,11 +740,11 @@ namespace MediaBrowser.Providers.Music
// MusicBrainz request a contact email address is supplied, as comment, in user agent field:
// https://musicbrainz.org/doc/XML_Web_Service/Rate_Limiting#User-Agent
options . Headers . UserAgent . Add( new ProductInfoHeaderValue ( string . Format (
options . Headers . UserAgent . ParseAdd ( string . Format (
CultureInfo . InvariantCulture ,
"{0} ( {1} )" ,
_appHost . ApplicationUserAgent ,
_appHost . ApplicationUserAgentAddress ) ) ) ;
_appHost . ApplicationUserAgentAddress ) ) ;
HttpResponseMessage response ;
var attempts = 0 u ;
@ -382,7 +382,7 @@ namespace MediaBrowser.Providers.Plugins.Tmdb.Movies
/// </summary>
internal Task < HttpResponseMessage > GetMovieDbResponse ( HttpRequestMessage message )
{
message . Headers . UserAgent . Add( new ProductInfoHeaderValue ( _appHost . ApplicationUserAgent ) ) ;
message . Headers . UserAgent . ParseAdd ( _appHost . ApplicationUserAgent ) ;
return _httpClientFactory . CreateClient ( ) . SendAsync ( message ) ;
}