Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/32822ef9e693f3889bc6cd4cabb8f7afa77fe7ab?style=unified&whitespace=show-all You should set ROOT_URL correctly, otherwise the web may not work correctly.

Merge pull request from crobibero/music-client

Use proper Named HttpClient for MusicBrainz requests
pull/4591/head
Claus Vium 4 years ago committed by GitHub
commit 32822ef9e6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -768,16 +768,7 @@ namespace MediaBrowser.Providers.Music
_stopWatchMusicBrainz.Restart();
using var request = new HttpRequestMessage(HttpMethod.Get, requestUrl);
// 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 .
request.Headers.UserAgent.ParseAdd(string.Format(
CultureInfo.InvariantCulture,
"{0} ( {1} )",
_appHost.ApplicationUserAgent,
_appHost.ApplicationUserAgentAddress));
response = await _httpClientFactory.CreateClient(NamedClient.Default).SendAsync(request).ConfigureAwait(false);
response = await _httpClientFactory.CreateClient(NamedClient.MusicBrainz).SendAsync(request).ConfigureAwait(false);
// We retry a finite number of times, and only whilst MB is indicating 503 (throttling).
}

Loading…
Cancel
Save